-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.36 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "yact-js",
"version": "0.1.21",
"repository": "[email protected]:hwaterke/yact-js.git",
"author": "Harold Waterkeyn",
"license": "MIT",
"bin": {
"yact": "./build/index.js"
},
"scripts": {
"prepublishOnly": "yarn build",
"prebuild": "rm -r build || true",
"build": "babel src --copy-files --out-dir build",
"format": "prettier --write 'src/**/*.js'"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"cross-spawn": "^6.0.5",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"readline-sync": "^1.4.9"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-stage-3": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix -c .eslintrc-import-order.json",
"prettier --write",
"eslint --max-warnings 0",
"git add"
],
"*.{css,scss,json,md,yml,html}": [
"prettier --write",
"git add"
]
}
}