-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "@bravobit/scss-starter",
"version": "1.0.8",
"description": "The simple SCSS starter",
"license": "CC0-1.0",
"keywords": [
"css",
"scss",
"compiled-css",
"library",
"web",
"starter"
],
"author": {
"name": "Stan van Heumen <[email protected]>",
"url": "https://www.linkedin.com/in/stan-van-heumen-86b4ab10a"
},
"repository": {
"type": "git",
"url": "https://github.com/bravobit/scss-starter.git"
},
"bugs": {
"url": "https://github.com/bravobit/scss-starter.git/issues"
},
"homepage": "https://github.com/bravobit/scss-starter#readme",
"scripts": {
"build": "node-sass src/all.scss dist/styles.css --output-style compressed --source-map dist",
"build:watch": "node-sass src/all.scss dist/styles.css --watch --output-style compressed --source-map dist",
"prepublish": "npm run build"
},
"devDependencies": {
"node-sass": "^4.7.1"
}
}