-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.12 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
{
"name": "henris",
"version": "1.2.19",
"description": "Henri's Sass Toolbelt",
"main": "index.scss",
"scripts": {
"test": "npm run test:sass && npm run test:node-sass",
"test:sass": "sass test/index.scss dist/test/sass/index.css",
"test:node-sass": "node-sass test/index.scss dist/test/node-sass/index.css",
"build": "npm run build:sass && npm run build:node-sass",
"build:sass": "sass index.local.scss dist/sass/index.css",
"build:node-sass": "node-sass index.local.scss dist/node-sass/index.css",
"build:base": "node-sass build/index.base.scss dist/henris.base.css",
"build:full": "node-sass build/index.full.scss dist/henris.min.css",
"build:base:min": "node-sass build/index.base.scss dist/henris.base.css --output-style compressed",
"build:full:min": "node-sass build/index.full.scss dist/henris.min.css --output-style compressed",
"build:dist": "npm run build && npm run build:base && npm run build:full && npm run build:base:min && npm run build:full:min",
"stylelint": "stylelint 'src/**/*.scss'",
"stylelint:fix": "stylelint 'src/**/*.scss' --fix",
"prepublishOnly": "npm run test && npm run build:dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henris-style/henris.git"
},
"keywords": [
"Sass",
"Toolbelt"
],
"author": "Sil van Diepen",
"license": "MIT",
"bugs": {
"url": "https://github.com/henris-style/henris/issues"
},
"homepage": "https://github.com/henris-style/henris#readme",
"devDependencies": {
"@henris/custom": "0.0.2",
"node-sass": "^4.13.1",
"sass": "^1.25.0",
"ssst": "0.0.7",
"stylelint": "^13.0.0",
"stylelint-logical-order": "0.0.6",
"stylelint-order": "^4.0.0"
},
"dependencies": {
"@henris/color": "^0.1.4",
"@henris/debug": "0.0.1",
"@henris/default": "^0.0.2",
"@henris/ease-gradient": "^0.0.3",
"@henris/forms": "^0.0.18",
"@henris/grid": "^0.0.14",
"@henris/math": "^0.0.3",
"@henris/menu": "^0.0.4",
"@henris/output": "^0.0.6",
"@henris/reset": "^0.0.1",
"@henris/typography": "^0.0.9",
"@henris/utils": "^0.0.17"
}
}