-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "release",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:farmersdog/release.git",
"author": "Rae Farine <rfarine1027@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "ncc build index.js --license licenses.txt",
"lint": "eslint *.js",
"lint:watch": "esw -w --color *.js",
"pretty": "pretty-quick",
"tdd": "jest --watchAll",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn build && git add ."
}
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"markdown-list": "^0.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@vercel/ncc": "^0.24.1",
"babel-jest": "^26.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-watch": "^7.0.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2"
}
}