-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "stylelint-itcss",
"version": "0.4.0",
"description": "A stylelint plugin to help with itcss architecture",
"main": "dist/src/index.js",
"scripts": {
"compile": "tsc -watch -p ./",
"lint": "node ./node_modules/.bin/tslint -c tslint.json --project tsconfig.json",
"test": "tsc -b; ./node_modules/.bin/ava",
"commit": "npx git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r && git add CHANGELOG.md"
},
"keywords": [
"stylelint",
"stylelint-plugin",
"itcss",
"css"
],
"author": "Benjamin JEGARD",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.0",
"@commitlint/config-conventional": "^8.3.0",
"@commitlint/config-angular": "^8.3.0",
"@types/node": "^13.7.4",
"ava": "^1.3.0",
"commitizen": "4.0.5",
"conventional-changelog-cli": "2.0.34",
"cz-conventional-changelog": "3.1.0",
"husky": "4.2.5",
"stylelint": "9.10.1",
"tslint": "5.11.0",
"typescript": "3.7.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}