-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "demo1",
"version": "2.1.3",
"description": "",
"main": "index.js",
"scripts": {
"cz": "git-cz",
"log": "standard-version --preset gitmoji-config",
"release": "semantic-release",
"changelog": "conventional-changelog -p gitmoji-config -i CHANGELOG.md -s -r 0",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"commitlint": "^11.0.0",
"commitlint-config-cz": "^0.13.2",
"commitlint-config-gitmoji": "^2.2.1",
"conventional-changelog": "^3.1.24",
"conventional-changelog-custom-config": "^0.3.1",
"conventional-changelog-gitmoji-config": "^1.4.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"cz-emoji": "^1.3.1",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"semantic-release": "^17.3.9",
"standard-version": "^9.1.1",
"stylelint": "^13.11.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.19.0"
},
"changelog": {
"withEmoji": true,
"showAuthor": true
},
"lint-staged": {
"*.scss": [
"stylelint --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}