forked from andrewagain/javascriptstuff-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "javascriptstuff-db-generator",
"description": "Generator for the JavaScript stuff database.",
"version": "1.0.0",
"author": "Andrew Farmer <[email protected]>",
"homepage": "https://www.javascriptstuff.com",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.9.2",
"prettier-eslint": "^8.6.0"
},
"keywords": [
"package",
"library",
"utility",
"javascript",
"stuff",
"things",
"lists"
],
"license": "UNLICENSED",
"main": "n/a",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "npm --prefix gather start",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"prettier": {
"trailingComma": "es5"
}
}