forked from milankinen/livereactload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "livereactload",
"version": "2.1.1",
"description": "Live code editing with Browserify and React",
"author": "Matti Lankinen <[email protected]> (https://github.com/milankinen)",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:milankinen/livereactload.git"
},
"keywords": [
"react",
"livereload",
"real-time",
"browserify-plugin",
"development"
],
"main": "index.js",
"scripts": {
"prepublish": "npm run dist",
"dist": "npm run compile && npm run remove-maps",
"compile": "babel src --out-dir lib --blacklist strict src/requireOverride.js",
"remove-maps": "find lib -type f -name '*.map' -delete",
"test": "babel-tape-runner test/**/*Test.js ; EXIT_VALUE=$? ; killall node ; exit $EXIT_VALUE"
},
"dependencies": {
"cli-color": "1.1.0",
"through2": "2.0.0",
"ws": "0.8.0"
},
"devDependencies": {
"babel": "5.8.23",
"babel-tape-runner": "1.2.0",
"bluebird": "2.10.1",
"chokidar": "1.0.6",
"shelljs": "0.5.3",
"tape": "4.2.1",
"zombie": "4.1.0"
}
}