-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.11 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
{
"author": "Andrey Tarantsov <andrey@tarantsov.com>",
"name": "livereload-core",
"description": "The heart of LiveReload: file monitoring, analysis and tool invocation",
"version": "0.8.4",
"homepage": "https://github.com/livereload/core",
"repository": {
"url": "git://github.com/livereload/core"
},
"main": "lib/session.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R ${REPORTER-spec}",
"cov": "rm -rf lib-cov; jscoverage lib lib-cov; env JSLIB=lib-cov mocha -R html-cov >coverage.html; open coverage.html"
},
"dependencies": {
"debug": "~0.7.0",
"jobqueue": "=0.2.0",
"reactive": "=0.1.0",
"subst": "~0.1.0",
"urlmatch": "~0.1.0",
"pathspec": "~0.9.2",
"underscore": "~1.4.2",
"fsmonitor": ">=0.2.2 <0.3"
},
"devDependencies": {
"mocha": "~1.6.0",
"vfs-local": "http://download.livereload.com/npm/vfs-local-0.1.0.tgz",
"vfs-test": "http://download.livereload.com/npm/vfs-test-0.1.0.tgz",
"rimraf": "~2.0.2",
"mkdirp": "~0.3.4",
"scopedfs": "~0.1.0"
},
"optionalDependencies": {},
"engines": {
"node": "*"
}
}