-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "livereactload",
"version": "3.5.0",
"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",
"browserify-plugin",
"hmr",
"browserify"
],
"main": "index.js",
"scripts": {
"prepublish": "npm run dist",
"dist": "npm run compile && npm run remove-maps",
"precompile": "rm -rf lib/*",
"compile": "babel src --out-dir lib",
"postcompile": "cp src/reloading.js lib/",
"remove-maps": "find lib -type f -name '*.map' -delete",
"pretest": "npm run compile",
"test": "babel-tape-runner test/**/*Test.js ; EXIT_VALUE=$? ; killall node ; exit $EXIT_VALUE"
},
"dependencies": {
"cli-color": "^1.1.0",
"convert-source-map": "^1.3.0",
"crc": "^3.4.4",
"left-pad": "^1.1.3",
"lodash": "^4.17.11",
"offset-sourcemap-lines": "^1.0.0",
"through2": "^2.0.3",
"umd": "^3.0.1",
"ws": "^6.1.x",
"react-proxy": "^1.1.8"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-tape-runner": "2.0.1",
"bluebird": "3.4.7",
"chokidar": "1.6.1",
"shelljs": "0.7.5",
"tape": "4.6.3",
"zombie": "4.2.1"
}
}