-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "dora-plugin-livereload",
"version": "0.6.0",
"description": "dora plugin for livereload",
"repository": {
"type": "git",
"url": "https://github.com/dora-js/dora-plugin-livereload"
},
"homepage": "https://github.com/dora-js/dora-plugin-livereload",
"author": "pigcan <[email protected]>",
"license": "MIT",
"main": "./lib",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"compile": "npm run build",
"test": "babel-node $(npm bin)/babel-istanbul cover $(npm bin)/_mocha -- --no-timeouts",
"lint": "eslint --ext .js src test/*-test.js",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"ip": "^1.1.5",
"lodash.isequal": "^4.1.4",
"tiny-lr": "~0.2.1",
"webpack-core": "^0.6.8"
},
"devDependencies": {
"atool-build": "0.7.x",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-istanbul": "^0.11.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.6",
"dora": "0.3.x",
"dora-plugin-webpack": "0.6.x",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"fs-extra": "^0.30.0",
"mocha": "^2.5.3",
"supertest": "^1.2.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports",
"transform-runtime"
]
},
"files": [
"lib",
"package.json",
"README.md"
]
}