-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
50 lines (50 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
45
46
47
48
49
50
{
"name": "goodparts",
"description": "An ESLint Style that only allows JavaScript the Good Parts (and \"Better Parts\") in your codebase.",
"version": "1.3.0",
"main": ".eslintrc.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/goodparts.git"
},
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dwyl/goodparts/issues"
},
"homepage": "https://github.com/dwyl/goodparts#readme",
"scripts": {
"test": "tape test/index.js test/**/*.test.js",
"coverage": "nyc report npm test",
"lint": "bin/cmd.js .",
"lint:fix": "bin/cmd.js . --fix"
},
"devDependencies": {
"nyc": "^15.0.1",
"tape": "^5.0.0"
},
"dependencies": {
"eslint": "~6.8.0",
"minimist": "^1.2.5"
},
"pre-commit": [
"lint",
"test"
],
"bin": "./bin/cmd.js",
"contributors": [
"eliascodes",
"jrans",
"shouston3",
"SimonLab",
"JMurphyWeb",
"Jbarget",
"iteles",
"nelsonic"
],
"keywords": [
"JavaScript The Good Parts",
"Good",
"Simple",
"Less is More"
]
}