-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.19 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "dragonglass",
"version": "1.0.2",
"description": "HTML5-first and pure CSS framework for fast UI building",
"source": "scss/main.css",
"main": "dist/main.css",
"style": "dist/main.css",
"repository": "git@github.com:Masquerade-Circus/dragonglass.git",
"author": "Masquerade <christian@masquerade-circus.net>",
"license": "Apache-2.0",
"private": false,
"files": [
"dist"
],
"keywords": [
"Dragonglass",
"css",
"sass",
"mobile-first",
"responsive",
"html5",
"framework",
"ui",
"user-interfaces",
"pwa",
"progressive web app",
"html5-first"
],
"scripts": {
"dev:server": "cross-env NODE_ENV=development node-dev --notify=false index.js",
"dev:sass": "nodemon -e scss -w ./site/public/scss build.js",
"dev": "run-all 'yarn dev:server' 'yarn dev:sass'",
"build": "node build.js",
"remark": "remark . -o",
"commit": "git add . && git-cz",
"release": "release-it --verbose",
"release-test": "release-it --dry-run --verbose"
},
"dependencies": {},
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.0",
"clean-css": "^4.2.3",
"compression": "^1.7.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.15.0",
"eslint-plugin-sonarjs": "^0.5.0",
"fs-extra": "^9.0.1",
"micro": "^9.3.4",
"micro-ex-router": "^1.8.0",
"modern-css-reset": "^1.3.0",
"node-dev": "^6.2.0",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"release-it": "^14.2.2",
"remark-cli": "^9.0.0",
"run-all": "^1.0.1",
"sass": "^1.30.0",
"valyrian.js": "^5.0.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": "conventionalcommits"
}
},
"git": {
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"npm": {
"publish": true
},
"hooks": {
"before:init": [
"yarn build"
],
"after:@release-it/conventional-changelog": [
"yarn remark"
]
}
}
}