-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
71 lines (71 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
63
64
65
66
67
68
69
70
71
{
"name": "systemjs-hot-reloader",
"version": "1.1.2",
"description": "Hot Module Replacement for SystemJS",
"main": "dist/index.js",
"jspmNodeConversion": false,
"registry": "npm",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"precommit": "npm run build && npm test",
"test": "echo No tests yet",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexisvincent/systemjs-hot-reloader.git"
},
"author": "Alexis Vincent <alexisjohnvincent@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexisvincent/systemjs-hot-reloader/issues"
},
"homepage": "https://github.com/alexisvincent/systemjs-hot-reloader#readme",
"babel": {
"presets": [
[
"env",
{
"modules": false
}
]
],
"plugins": [
"external-helpers"
]
},
"jspm": {
"map": {
"./dist/index.js": {
"node": "@empty",
"production": "./lib/production.js"
}
}
},
"dependencies": {
"systemjs-hmr": "^2.0.5"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.1.4",
"debug": "^2.2.0",
"deepmerge": "^1.3.2",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^3.2.2",
"socket.io-client": "^1.7.3"
},
"standard": {
"ignore": [
"config.js",
"test/**",
"default-listener.js"
]
},
"contributors": [
"Jiri Spac <capajj@gmail.com>"
]
}