This repository was archived by the owner on Mar 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@anvilabs/eslint-config",
"private": true,
"repository": "anvilabs/eslint-config",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint --cache .",
"lint.fix": "yarn run lint --fix",
"find-new-rules": "wsrun --fast-exit find-new-rules",
"prettier-check": "eslint --print-config packages/eslint-config/index.js | eslint-config-prettier-check",
"jest": "jest --passWithNoTests",
"test": "run-p --silent --print-label lint find-new-rules prettier-check jest",
"semantic-release": "wsrun --serial semantic-release"
},
"prettier": {
"bracketSpacing": false,
"jsxBracketSameLine": false,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e",
"pre-push": "yarn test"
}
},
"lint-staged": {
"**/*.{js,json,yml}": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"roots": [
"<rootDir>/packages"
],
"testEnvironment": "node",
"testRegex": "/__tests__/.+-test\\.js$"
},
"devDependencies": {
"@anvilabs/eslint-config": "0.0.0-development",
"@commitlint/cli": "^7.5.1",
"@commitlint/config-conventional": "^7.5.0",
"eslint": "^5.10.0",
"eslint-find-rules": "^3.3.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"semantic-release": "15.9.12",
"semantic-release-monorepo": "6.1.1",
"wsrun": "^3.6.4"
},
"dependencies": {}
}