-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "standard-demo",
"description": "web demo of standard",
"version": "1.1.1",
"author": "Dan Flettre <fletd01@yahoo.com>",
"bugs": {
"url": "https://github.com/flet/standard-demo/issues"
},
"dependencies": {
"brace": "^0.11.1",
"main-loop": "^3.4.0",
"simple-get": "^4.0.0",
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"ecstatic": "^4.1.4",
"standard": "*",
"tape": "^5.0.1",
"watchify": "^4.0.0"
},
"homepage": "https://github.com/flet/standard-demo",
"keywords": [],
"license": "ISC",
"main": "main.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/flet/standard-demo.git"
},
"scripts": {
"build": "browserify main.js -o bundle.js",
"start": "npm run build && ecstatic -p 4000 .",
"test": "standard && tape test/*.js",
"watch": "npm run watch-js & npm run watch-html",
"watch-html": "ecstatic -p 4000 .",
"watch-js": "watchify main.js -dv -o bundle.js"
},
"standard": {
"ignore": [
"bundle.js"
]
}
}