-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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": "snack-helper",
"version": "2.2.0",
"description": "A universal CSS helper library.",
"main": "dist/snack-helper.css",
"files": [
"dist",
"src",
"_index.scss"
],
"author": "nzbin",
"license": "MIT",
"keywords": [
"snack-helper",
"css-helpers",
"css-variables",
"css-utilities",
"sass",
"scss"
],
"homepage": "https://snack-ui.github.io/snack-helper/",
"repository": {
"type": "git",
"url": "git+https://github.com/snack-ui/snack-helper.git"
},
"bugs": {
"url": "https://github.com/snack-ui/snack-helper/issues"
},
"scripts": {
"start": "run-p build:dev watch",
"build": "run-s clean sass sassmin postcss copy",
"build:dev": "run-s sass copy",
"clean": "rimraf dist",
"sass": "sass --style=expanded src/snack-helper.scss dist/snack-helper.css",
"sassmin": "sass --style=compressed src/snack-helper.scss dist/snack-helper.min.css",
"copy": "cp dist/snack-helper.css docs/css",
"postcss": "postcss -r dist/*.css --map",
"watch": "onchange src -- run-p build:dev",
"lint": "stylelint \"src/**/*.scss\" --fix",
"prepublish": "npm run build"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"postcss-header": "^3.0.1",
"rimraf": "^3.0.2",
"sass": "^1.49.7",
"stylelint": "^14.3.0",
"stylelint-config-recommended-scss": "^5.0.2",
"stylelint-config-standard": "^24.0.0",
"stylelint-scss": "^4.1.0"
},
"engines": {
"node": ">=4"
}
}