-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.71 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "aliv",
"version": "1.13.0",
"description": "Simple, but powerful and intuitive one liner live-reloading Node.js server.",
"main": "./lib/index.js",
"scripts": {
"start": "cd _fixture && aliv",
"test": "mocha --reporter list --check-leaks",
"tw": "mocha --reporter list --check-leaks --watch",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/ --report lcovonly -- --recursive -R list --check-leaks && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericmdantas/aliv.git"
},
"author": "Eric Mendes Dantas <ericdantas0@gmail.com> (https://github.com/ericmdantas)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericmdantas/aliv/issues"
},
"bin": {
"aliv": "./bin/index.js"
},
"keywords": [
"aliv",
"alive",
"server",
"reload",
"change",
"refresh",
"server-reload",
"file-change",
"localhost",
"server-refresh",
"client",
"client-reload",
"hot-reload",
"http2",
"gzip",
"fast",
"dev"
],
"homepage": "https://github.com/ericmdantas/aliv#readme",
"dependencies": {
"chalk": "^2.3.0",
"cheerio": "^0.20.0",
"chokidar": "^1.4.2",
"compression": "^1.6.2",
"express": "^4.13.4",
"fancy-log": "^1.3.0",
"http-proxy": "^1.13.2",
"minimist": "^1.2.0",
"open": "6.0.0",
"spdy": "^4.0.0",
"ws": "^3.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"proxyquire": "^1.7.4",
"sinon": "^1.17.3"
}
}