-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 992 Bytes
/
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
{
"name": "css-architecture",
"version": "2.0.0",
"description": "CSS Architecture talk",
"homepage": "https://nrambeck.github.io/css-architecture",
"main": "js/reveal.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "reveal-md slides.md",
"dev": "parallelshell \"npm run dev-reveal\" \"npm run dev-sass\"",
"dev-reveal": "reveal-md slides.md -w --css me.css",
"dev-sass": "node-sass -w src/sass/me.scss me.css",
"build": "npm run sass && reveal-md slides.md --static docs --css me.css --static-dirs=assets",
"sass": "node-sass src/sass/me.scss me.css"
},
"author": {
"name": "Nathan Rambeck",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/nrambeck/css-architecture.git"
},
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"node-sass": "^4.11.0",
"parallelshell": "^3.0.2",
"reveal-md": "^2.4.1"
},
"license": "MIT"
}