-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.06 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
45
46
47
48
49
50
51
{
"name": "decors",
"description": "a simple, temporary, reusable reverse proxy, with benefits. designed for prototyping js apps by serving static files, live code reloads, and CORS bypassing",
"author": "tangmi",
"version": "1.1.13",
"scripts": {
"start": "node ./bin/decors",
"test": "./node_modules/.bin/mocha --reporter spec",
"postpublish": "./node_modules/.bin/srun --script=postpublish"
},
"dependencies": {
"commander": "^2.2.0",
"express": "^4.2.0",
"colors": "~0.6.2",
"chokidar": "~0.8.1",
"connect-livereload": "^0.4.0",
"tiny-lr": "0.0.7",
"mime": "~1.2.9",
"request": "^2.36.0",
"memorystream": "^0.2.0",
"connect-injector": "^0.2.3"
},
"devDependencies": {
"mocha": "~1.12.0",
"supertest": "~0.7.1",
"srun": "latest"
},
"keywords": [
"cors",
"livereload",
"development",
"web",
"rest",
"restful",
"router",
"app",
"api",
"javascript",
"prototype"
],
"repository": {
"type": "git",
"url": "https://github.com/tangmi/decors.git"
},
"bin": {
"decors": "./bin/decors"
},
"engines": {
"node": "*"
}
}