-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "scss-starter",
"version": "0.0.2",
"description": "A starter for setting up SCSS.",
"main": "index.js",
"scripts": {
"serve": "parallelshell \"http-server . -p 7000\" \"open http://localhost:7000\"",
"serve:watch": "parallelshell \"npm run watch\" \"http-server . -p 7000\" \"open http://localhost:7000\"",
"build": "sass --style expanded ./styles/main.scss:./dist/main.css",
"watch": "sass --watch --style expanded ./styles/main.scss:./dist/main.css",
"lint": "sass-lint -c .sass-lint.yml -v -q"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sturdynut/scss-starter.git"
},
"keywords": [
"scss",
"css",
"architecture"
],
"author": "Matti Salokangas",
"license": "MIT",
"bugs": {
"url": "https://github.com/sturdynut/scss-starter/issues"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint"
}
},
"homepage": "https://github.com/sturdynut/scss-starter#readme",
"devDependencies": {
"ghooks": "^2.0.0",
"parallelshell": "^2.0.0",
"sass": "^0.5.0",
"sass-lint": "^1.10.2",
"sass-mq": "^3.3.2"
}
}