-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "snacki",
"version": "0.1.0",
"description": "A CSS framework for mobile.",
"files": [
"dist",
"src"
],
"homepage": "https://snacki.github.io",
"repository": "nzbin/snacki",
"license": "MIT",
"author": "nzbin",
"main": "dist/snacki.css",
"keywords": [
"css",
"css3",
"sass",
"front-end",
"framework",
"mobile"
],
"devDependencies": {
"autoprefixer": "^7.1.6",
"editorconfig-tools": "^0.1.1",
"node-sass": "^4.9.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 watch",
"build": "run-s clean sass postcss",
"build:dev": "run-s clean sass",
"clean": "rimraf dist",
"sass": "node-sass --output-style expanded src/snacki.scss dist/snacki.css",
"sassmin": "node-sass --output-style compressed src/snacki.scss dist/snacki.min.css",
"postcss": "postcss -r dist/*.css --map",
"watch": "onchange src -- run-p build",
"lint": "stylelint --syntax scss \"src/**/*.scss\" --fix && editorconfig-tools check ."
}
}