-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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": "pr-maneiro",
"version": "1.0.0",
"description": "Faça alguém feliz com um comentário no PR!",
"main": "main.js",
"scripts": {
"test": "jest",
"lint": "eslint --ext .js scripts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgorHalfeld/pr-maneiro.git"
},
"keywords": [
"pr",
"maneiro",
"pull",
"request"
],
"author": "Igor Halfeld <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/IgorHalfeld/pr-maneiro/issues"
},
"homepage": "https://github.com/IgorHalfeld/pr-maneiro#readme",
"devDependencies": {
"@types/jest": "^24.0.24",
"@types/node": "^12.12.21",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.1.0",
"jest": "^24.9.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
}
}