forked from mklabs/tiny-lr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 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
{
"author": "mklabs",
"name": "tiny-lr",
"description": "Tiny LiveReload server, background-friendly",
"version": "0.0.9",
"homepage": "https://github.com/mklabs/tiny-lr",
"repository": {
"url": "git://github.com/mklabs/tiny-lr.git"
},
"bin": "./bin/tiny-lr",
"main": "./lib",
"scripts": {
"prepublish:": "npm test",
"test": "mocha --reporter spec test/wd test",
"test-debug": "DEBUG=tinylr:* mocha --reporter list",
"test-debug-all": "DEBUG=* mocha --reporter list",
"pretest": "npm run phantom-start",
"posttest": "npm run phantom-stop",
"phantom-start": "sh scripts/phantom-start",
"phantom-stop": "sh scripts/phantom-stop",
"serve": "node examples/express/server.js",
"post-change": "sh scripts/post-change",
"get-change": "curl http://localhost:35729/changed?files=site.css"
},
"dependencies": {
"qs": "^0.6.6",
"faye-websocket": "^0.7.2",
"noptify": "~0.0.3",
"debug": "^0.8.1",
"body-parser": "^1.2.0",
"parseurl": "^1.0.1"
},
"devDependencies": {
"mocha": "^1.18.2",
"request": "^2.34.0",
"supertest": "^0.12.0",
"express": "^4.1.1",
"connect": "^2.14.5",
"body-parser": "^1.0.2",
"phantomjs": "^1.9.7-5",
"wd": "^0.2.21"
},
"config": {
"test_port": "9001"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mklabs/tiny-lr/blob/master/LICENSE-MIT"
}
]
}