-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.61 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
56
57
58
59
60
61
{
"name": "@brown-ccv/disco-styles",
"version": "2.0.1",
"description": "CSS framework based on Bulma for Disco Design System",
"main": "scss/disco.scss",
"scripts": {
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix && npm run build-cleancss",
"build-autoprefix": "postcss --use autoprefixer --map false --output css/disco.css css/disco.css",
"build-clean": "rimraf css",
"build-cleancss": "cleancss -o css/disco.min.css css/disco.css",
"build-sass": "node-sass --output-style expanded --source-map true scss/disco.scss css/disco.css",
"commit": "git-cz",
"deploy": "npm run build",
"start": "npm run build-sass -- --watch",
"release": "semantic-release",
"changelog": "semantic-release --generate-notes --dry-run"
},
"keywords": [
"scss",
"sass",
"css",
"styles",
"disco",
"ccv",
"brown university"
],
"files": [
"css",
"scss",
"assets",
"LICENSE",
"README.md"
],
"author": "Fernando Gelin",
"license": "MIT",
"dependencies": {
"bulma": "^0.9.0",
"cz-conventional-changelog": "^3.2.0",
"git-cz": "^4.3.1",
"semantic-release": "^17.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/brown-ccv/disco-styles.git"
},
"devDependencies": {
"autoprefixer": "^9.7.6",
"clean-css-cli": "^4.3.0",
"node-sass": "^4.13.1",
"postcss-cli": "^7.1.0",
"rimraf": "^3.0.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}