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
| {
| "author": "mklabs",
| "name": "tiny-lr",
| "description": "Tiny LiveReload server, background-friendly",
| "version": "0.2.1",
| "homepage": "https://github.com/mklabs/tiny-lr",
| "bugs": "https://github.com/mklabs/tiny-lr/issues",
| "repository": {
| "type": "git",
| "url": "git://github.com/mklabs/tiny-lr.git"
| },
| "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": {
| "body-parser": "~1.14.0",
| "debug": "~2.2.0",
| "faye-websocket": "~0.10.0",
| "livereload-js": "^2.2.0",
| "parseurl": "~1.3.0",
| "qs": "~5.1.0"
| },
| "devDependencies": {
| "connect": "^3.4.0",
| "express": "^4.1.1",
| "mocha": "^2.3.3",
| "phantomjs": "^1.9.7-5",
| "request": "^2.34.0",
| "supertest": "^1.1.0",
| "wd": "^0.3.12"
| },
| "config": {
| "test_port": "9001"
| },
| "license": "MIT"
| }
|
|