forked from tivac/modular-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
52
53
54
55
56
{
"name": "modular-css-root",
"version": "0.0.0",
"private": true,
"author": "Pat Cavit <[email protected]>",
"license": "MIT",
"repository": "tivac/modular-css",
"bugs": {
"url": "https://github.com/tivac/modular-css/issues"
},
"scripts": {
"clean": "lerna clean",
"precommit": "lint-staged",
"commitmsg": "commitlint --edit",
"cover": "jest --coverage",
"postinstall": "lerna bootstrap --hoist",
"lint": "eslint .",
"prerelease": "npm test",
"release": "lerna publish",
"test": "jest",
"posttest": "npm run lint",
"watch": "jest --watch"
},
"devDependencies": {
"@commitlint/cli": "^6.1.0",
"@commitlint/config-lerna-scopes": "^6.1.0",
"danger": "^3.1.6",
"dedent": "^0.7.0",
"eslint": "^4.17.0",
"eslint-config-arenanet": "^3.3.1",
"eslint-plugin-no-only-tests": "^2.0.0",
"husky": "^0.14.3",
"jest": "^22.2.1",
"lerna": "^2.8.0",
"lint-staged": "^6.1.0",
"locater": "^1.3.0",
"pinpoint": "^1.1.0",
"shelljs": "^0.8.1"
},
"jest": {
"coveragePathIgnorePatterns": [
"node_modules",
"parsers"
],
"watchPathIgnorePatterns": [
"test/output",
"test/specimens"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}