-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "struct-scss",
"version": "0.0.0-development",
"author": "Larry Botha",
"repository": {
"type": "git",
"url": "https://github.com/larrybotha/struct-scss.git"
},
"keywords": [
"bem",
"css",
"itcss",
"sass",
"scss",
"smacss"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/larrybotha/struct-scss/issues"
},
"scripts": {
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 --preset angular",
"commit": "git-cz",
"clean": "rm -rf build && mkdir build",
"prebuild": "npm run clean",
"build": "npm run build:style && npm run build:global",
"build:global": "sass scss/global-only.scss --load-path=node_modules/normalize.css > build/style.css",
"build:style": "sass scss/style.scss --load-path=node_modules/normalize.css > build/style.css",
"build:watch": "nodemon -e scss --exec 'npm run build'",
"test": "jest",
"test:watch": "npm test -- --watch",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"devDependencies": {
"commitizen": "^4.2.6",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"jest": "^27.0.6",
"normalize.css": "^7.0.0",
"sass": "^1.35.1",
"semantic-release": "^19.0.3"
},
"peerDependencies": {
"normalize.css": "*"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}