-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.57 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.57 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "process-dashboard",
"version": "0.1.0",
"description": "A dashboard for managing processes",
"keywords": [],
"author": "Raynos <raynos2@gmail.com>",
"repository": "git://github.com/Raynos/process-dashboard.git",
"main": "index",
"homepage": "https://github.com/Raynos/process-dashboard",
"contributors": [
{
"name": "Raynos"
}
],
"bugs": {
"url": "https://github.com/Raynos/process-dashboard/issues",
"email": "raynos2@gmail.com"
},
"dependencies": {
"optimist": "~0.5.0",
"routes-router": "~0.1.1",
"serve-browserify": "~0.3.1",
"npm-less": "~0.2.1",
"send-data": "~1.1.2",
"jsonml-stringify": "~0.1.8",
"node-env": "~0.1.2",
"require-fresh": "~0.1.3",
"process": "~0.5.1",
"safe-json-parse": "~0.1.1",
"xtend": "~2.0.5",
"write-html": "~0.1.2",
"unpack-element": "~1.1.3",
"http-methods": "~0.1.0",
"global": "~2.0.7",
"xhr": "~1.2.2",
"insert": "~1.0.1",
"body": "~1.1.1",
"routes": "~0.2.0",
"continuable": "~1.1.4",
"continuable-cache": "~0.1.1",
"continuable-para": "~1.0.1",
"rimraf": "~2.1.4",
"uuid": "~1.4.1",
"gens": "~0.2.1",
"hash-router": "~0.1.0"
},
"devDependencies": {
"xtend": "~2.0.5",
"request": "~2.21.0",
"tape-continuable": "~0.1.1",
"request-proxy": "~0.1.0",
"tape": "~1.0.4",
"istanbul": "~0.1.36"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Raynos/process-dashboard/raw/master/LICENSE"
}
],
"scripts": {
"test": "node --harmony ./test/index.js",
"travis-test": "node --harmony ./node_modules/istanbul/lib/cli.js cover --harmony ./test/index.js && ((cat coverage/lcov.info | coveralls) || exit 0)",
"start": "node --harmony ./process-dashboard.js",
"watch": "nodemon --harmony -w ./process-dashboard.js -w ./router.js -w ./lib -w ./routes ./process-dashboard.js",
"cover": "node --harmony ./node_modules/istanbul/lib/cli.js cover --report none --print detail ./test/index.js",
"view-cover": "istanbul report html && google-chrome ./coverage/index.html",
"test-browser": "testem-browser ./test/browser/index.js",
"testem": "testem-both -b=./test/browser/index.js"
},
"testling": {
"files": "test/browser/index.js",
"browsers": [
"ie/8..latest",
"firefox/16..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}