-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "systemjs-hmr",
"version": "2.0.9",
"description": "Hot Module Replacement Extention for SystemJS",
"main": "dist/bundle.umd.js",
"registry": "npm",
"format": "global",
"scripts": {
"build": "tsc && ./node_modules/.bin/rollup -c",
"dev": "tsc --watch & ./node_modules/.bin/rollup -c --watch",
"prepublish": "npm run build",
"precommit": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexisvincent/systemjs-hmr.git"
},
"author": "Alexis Vincent",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexisvincent/systemjs-hmr/issues"
},
"homepage": "https://github.com/alexisvincent/systemjs-hmr#readme",
"devDependencies": {
"@types/node": "^7.0.8",
"bluebird": "^3.4.7",
"debug": "^2.6.1",
"husky": "^0.11.9",
"imgraphjs": "0.0.32",
"immutable": "^3.8.1",
"rollup": "^0.41.4",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
},
"jspmPackage": true,
"jspm": {
"overrides": {
"ajv": {
"registry": "npm"
}
},
"map": {
"./dist/bundle.umd.js": {
"production": "@empty"
}
}
},
"dependencies": {
"@types/ramda": "^0.0.5",
"@types/systemjs": "^0.20.2",
"ramda": "^0.23.0"
}
}