-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@skpm/dialog",
"version": "0.4.2",
"description": "A sketch module for showing dialog",
"main": "lib/index.js",
"types": "./type.d.ts",
"devDependencies": {
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-no-not-accumulator-reassign": "^0.1.0",
"eslint-plugin-prettier": "^2.3.1",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2",
"prettier": "^1.7.3",
"rimraf": "^2.6.2"
},
"scripts": {
"test": "eslint . --ignore-path .gitignore",
"lint-staged": "lint-staged",
"prettier:base": "prettier --single-quote --trailing-comma es5 --no-semi --write",
"prettify": "npm run prettier:base \"./lib/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/skpm/dialog.git"
},
"keywords": [
"sketch",
"module",
"dialog",
"ui"
],
"author": "Mathieu Dutour <[email protected]> (http://mathieu.dutour.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/skpm/dialog/issues"
},
"homepage": "https://github.com/skpm/dialog#readme",
"dependencies": {
"mocha-js-delegate": "^0.2.0"
}
}