-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 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
{
"name": "@henris/utils",
"version": "0.0.19",
"description": "Utilities module for Henri's",
"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:dist": "npm run stylelint:fix && npm run build",
"stylelint": "stylelint 'src/**/*.scss'",
"stylelint:fix": "stylelint 'src/**/*.scss' --fix",
"prepublishOnly": "npm run build:dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henris-style/utils.git"
},
"keywords": [
"Sass",
"Toolbelt",
"Typography",
"Henri's"
],
"author": "Sil van Diepen",
"license": "MIT",
"bugs": {
"url": "https://github.com/henris-style/utils/issues"
},
"homepage": "https://github.com/henris-style/utils#readme",
"devDependencies": {
"node-sass": "^4.13.0",
"sass": "^1.23.1",
"ssst": "0.0.8",
"stylelint": "^11.1.1",
"stylelint-logical-order": "0.0.6",
"stylelint-order": "^3.1.1"
},
"dependencies": {}
}