-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
37 lines (37 loc) · 979 Bytes
/
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
{
"name": "@angularclass/hmr",
"version": "4.0.0",
"description": "angular-hmr: Hot Module Replacement for Webpack and Angular",
"main": "dist/index.js",
"sideEffects": false,
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc || true",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatrickJS/angular-hmr.git"
},
"author": "PatrickJS <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PatrickJS/angular-hmr/issues"
},
"homepage": "https://github.com/PatrickJS/angular-hmr#readme",
"devDependencies": {
"@angular/core": "~10.0.14",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.2",
"tslib": "^2.0.1",
"typescript": "^3.9.5",
"zone.js": "^0.11.1",
"webpack": "4.44.1"
},
"dependencies": {}
}