forked from csswizardry/nightingale-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "nightingale-demo",
"version": "0.1.0",
"description": "Demonstration of Nightingale consumption",
"main": "main.scss",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csswizardry/nightingale-demo.git"
},
"keywords": [
"scss",
"css",
"sass",
"nhs",
"ui",
"styleguide",
"toolkit",
"framework"
],
"author": "Harry Roberts",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/csswizardry/nightingale-demo/issues"
},
"homepage": "https://github.com/csswizardry/nightingale-demo#readme",
"dependencies": {
"nightingale": "git://github.com/NHSLeadership/nightingale.git#develop"
},
"scripts": {
"build": "node_modules/.bin/node-sass main.scss --include-path node_modules/ --output-style expanded --precision 9 > ./dist/main.css",
"watch": "node_modules/.bin/node-sass main.scss --watch --include-path node_modules/ --output-style expanded --precision 9 --output dist/"
}
}