-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.47 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
{
"name": "spejson",
"version": "1.0.1",
"main": "src/index.scss",
"description": "Responsive spacing mixins and utility classes",
"keywords": [
"spacing",
"responsive",
"sass",
"utility",
"margin",
"padding"
],
"author": "Dawid Karabin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hinok/spejson.git"
},
"bugs": {
"url": "https://github.com/hinok/spejson/issues"
},
"homepage": "https://github.com/hinok/spejson#readme",
"scripts": {
"assets": "cp node_modules/normalize.css/normalize.css demo/normalize.css",
"backstop-reference": "backstop reference",
"backstop-test": "backstop test",
"vr:build": "run-s assets serve-ci:start backstop-reference serve-ci:stop",
"vr:test": "run-s assets serve-ci:start backstop-test serve-ci:stop",
"build:scss": "node-sass -r --output-style nested demo/*.scss -o demo",
"watch:scss": "node-sass -w -r --output-style nested demo/*.scss -o demo",
"serve": "live-server ./ --open=demo --port=8000 --ignore=node_modules",
"serve-ci:start": "forever start server-ci.js",
"serve-ci:stop": "forever stopall",
"ci": "run-s build:scss vr:test",
"watch": "run-p assets watch:scss serve"
},
"devDependencies": {
"backstopjs": "^2.3.5",
"express": "^4.14.0",
"forever": "^0.15.3",
"live-server": "^1.1.0",
"node-sass": "^4.0.0",
"normalize.css": "^5.0.0",
"npm-run-all": "^3.1.2"
}
}