-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 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
{
"name": "nodesphere-website",
"version": "0.0.0",
"description": "",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf dist/",
"compile": "npm run data && harp compile src dist",
"data": "bin/coffee2json src/_data.coffee src/_data.json",
"dev": "npm run start & npm run watch-data & npm run watch",
"publish": "npm run build && bin/publish && npm run clean",
"shipit": "npm run test && git push origin head",
"start": "harp server --port ${PORT:=9000} src",
"test": "npm run build && npm run clean",
"watch": "browser-sync start --port 8080 --proxy \"localhost:${PORT:=9000}\" --files 'src/**/*'",
"watch-data": "nodemon --watch src/_data.coffee --exec coffee bin/coffee2json src/_data.coffee src/_data.json"
},
"author": "Harlan T Wood",
"repository": {
"type": "git",
"url": "https://github.com/nodesphere/website.git"
},
"devDependencies": {
"browser-sync": "^1.3.7",
"coffee-script": "^1.9.2",
"gh-pages": "^0.2.0",
"harp": "^0.13.0",
"lightsaber": "^0.4.1"
},
"engines": {
"node": "~0.10.38",
"npm": "^2.7.6"
}
}