-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "docs",
"version": "1.0.0",
"description": "Dixeed knowledge base",
"main": "index.js",
"scripts": {
"lint-staged": "lint-staged",
"precommit": "lint-staged",
"cm": "git-cz",
"commitmsg": "commitlint -e",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dixeed/docs.git"
},
"author": "Nargonath <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dixeed/docs/issues"
},
"homepage": "https://github.com/dixeed/docs#readme",
"lint-staged": {
"{examples/**/*.js,*.js}": [
"prettier-eslint --write --print-width 100 --trailing-comma all --single-quote",
"eslint",
"git add"
],
"{examples/**/*.{json, *.md},*.{json, *.md}}": [
"prettier-eslint --write --print-width 100 --trailing-comma all --single-quote",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"getLastRelease": "last-release-git"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-angular": "^7.1.2",
"@dixeed/eslint-config": "^2.0.0",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.2.0",
"last-release-git": "0.0.3",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1"
}
}