forked from jus/jus.js.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1002 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
34
35
36
{
"name": "jus.js.org",
"version": "1.0.0",
"description": "The website for jus, the delicous file server for nodey websites.",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"gh-pages-travis": "^1.0.4",
"jus": "^0.20.0",
"path-exists": "^3.0.0"
},
"scripts": {
"start": "jus serve",
"dev": "jus serve",
"deploy": "npm run build && npm run commit && npm run push && npm run open",
"build": "rm -rf dist && jus build . dist",
"commit": "git add dist && git commit -m 'update dist'",
"push": "git subtree push --prefix dist origin gh-pages",
"open": "open http://jus.js.org",
"gh-pages-travis": "gh-pages-travis"
},
"repository": "https://github.com/jus/jus.js.org",
"keywords": [
"jus",
"static",
"website",
"browserify",
"es6"
],
"author": "zeke",
"license": "MIT",
"bugs": {
"url": "https://github.com/jus/jus.js.org/issues"
},
"homepage": "https://github.com/jus/jus.js.org#readme"
}