-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "@gonimbly/javascript",
"version": "1.0.0",
"private": true,
"description": "GoNimbly Javascript Styleguide",
"author": "Jon Crenshaw <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/gonimbly/javascript",
"repository": "gonimbly/javascript",
"workspaces": ["packages/*"],
"scripts": {
"clean": "lerna clean --yes && rimraf node_modules **/yarn.lock",
"generate-install":
"node ./scripts/generate-install.js && git add ./packages/*/README.md",
"precommit": "npm run generate-install && lint-staged",
"publish": "lerna publish"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"],
"yarn.lock": ["git rm --cached"]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"chalk": "^2.0.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^0.14.1",
"lerna": "^2.0.0-rc.5",
"lint-staged": "^4.0.0",
"prettier": "^1.5.2",
"rimraf": "^2.6.1"
}
}