-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.18 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
{
"name": "ytr-actions",
"version": "1.0.0",
"private": true,
"author": "Sérgio Ramos <[email protected]>",
"license": "MIT",
"scripts": {
"build": "node src/index",
"fmt": "prettier --config .prettierrc --write '**/*'",
"lint": "eslint . --ext .js"
},
"dependencies": {
"@actions/core": "^1.1.1",
"execa": "^2.0.4",
"force-array": "^3.1.0",
"fs-extra": "^8.1.0",
"mz": "^2.7.0",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"yargs-unparser": "^1.5.0"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"apr-for-each": "^3.0.3",
"apr-main": "^4.0.3",
"del": "^5.1.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-xo-space": "^0.21.0",
"husky": "^3.0.5",
"js-yaml": "^3.13.1",
"lint-staged": "^9.2.5",
"make-dir": "^3.0.0",
"node-yaml": "^4.0.1",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --config .prettierrc --write",
"git add"
],
"*.*": [
"prettier --config .prettierrc --write",
"git add"
]
}
}