-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "ngt-scripts",
"version": "0.0.0-development",
"description": "Script used to abstract project boilerplate for my personal projects",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"files": [
"husky.js",
"prettier.js",
"commitlint.js",
"lint-staged.js"
],
"repository": {
"type": "git",
"url": "https://github.com/Nargonath/ngt-scripts.git"
},
"keywords": [
"configuration",
"scripts"
],
"author": "Nargonath <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nargonath/ngt-scripts/issues"
},
"homepage": "https://github.com/Nargonath/ngt-scripts#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {},
"dependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/config-lerna-scopes": "^8.0.0",
"@commitlint/travis-cli": "^8.0.0",
"cz-conventional-changelog": "^3.0.2",
"husky": "^3.0.0",
"lint-staged": "^9.0.2",
"prettier": "^1.17.1",
"semantic-release": "^15.13.12"
}
}