-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "snacker",
"version": "0.1.0",
"description": "A CSS framework based on parts.",
"main": "dist/snacker.css",
"files": [
"dist",
"src"
],
"homepage": "https://github.com/nzbin/snacker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nzbin/snacker.git"
},
"author": "nzbin",
"license": "MIT",
"bugs": {
"url": "https://github.com/nzbin/snacker/issues"
},
"keywords": [
"snacker",
"snack",
"snack-helper",
"css-framework",
"sass"
],
"devDependencies": {
"autoprefixer": "^7.1.6",
"cpy-cli": "^1.0.1",
"node-sass": "^4.5.3",
"npm-run-all": "^2.3.0",
"onchange": "^2.5.0",
"postcss-cli": "^4.1.1",
"postcss-header": "^1.0.0",
"rimraf": "^2.5.4",
"stylelint": "^9.2.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.0.0"
},
"engines": {
"node": ">=4"
},
"scripts": {
"start": "run-p build:dev watch",
"build": "run-s clean sass sassmin postcss",
"build:dev": "run-s sass",
"clean": "rimraf dist",
"sass": "node-sass --output-style expanded src/snacker.scss dist/snacker.css",
"sassmin": "node-sass --output-style compressed src/snacker.scss dist/snacker.min.css",
"postcss": "postcss -r dist/*.css --map",
"watch": "onchange src -- run-p build:dev"
}
}