-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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": "@dixeed/eslint-config",
"version": "0.0.0-development",
"private": false,
"description": "Package gathering all eslint configurations used amongst our Dixeed's projects.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dixeed/eslint-config.git"
},
"author": "Nargonath <[email protected]>",
"license": "MIT",
"scripts": {
"cm": "git-cz",
"commitmsg": "commitlint -e",
"precommit": "lint-staged",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"lint-staged": {
"{lib,test}/**/*.{js,css,json}": [
"prettier --single-quote --write --print-width 100 --trailing-comma es5",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"keywords": ["eslint", "eslint-config", "eslintconfig", "angularjs"],
"files": ["index.js", "angularjs.js", "next.js", "lib"],
"peerDependencies": {
"eslint": ">=4.0.0",
"eslint-config-angular": "0.5.0",
"eslint-config-prettier": "2.6.0",
"eslint-plugin-angular": "3.1.1",
"eslint-plugin-import": "2.7.0"
},
"devDependencies": {
"@commitlint/cli": "3.2.0",
"@commitlint/config-angular": "3.1.1",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"eslint": "4.7.2",
"husky": "0.14.3",
"lint-staged": "4.2.3",
"prettier": "1.7.0",
"semantic-release": "8.0.3"
},
"dependencies": {
"eslint-config-angular": "0.5.0",
"eslint-config-prettier": "2.6.0",
"eslint-plugin-angular": "3.1.1",
"eslint-plugin-import": "2.7.0"
}
}