forked from aspnetboilerplate/abp-ng2-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "abp-ng2-module",
"version": "5.1.1",
"description": "AspNet Boilerplate Angular Module",
"main": "dist/bundles/abp-ng2-module.umd.js",
"module": "dist/index.js",
"scripts": {
"ngc": "ngc",
"cleanup": "rimraf dist/bundles dist/src dist/index.d.ts dist/index.metadata.json dist/index.js dist/index.js.map dist/LICENSE dist/README.md",
"bundling": "rollup -c",
"minify": "uglifyjs dist/bundles/abp-ng2-module.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/abp-ng2-module.umd.min.js",
"copy": "copyfiles LICENSE README.md dist",
"build": "npm run cleanup && npm run ngc && npm run bundling && npm run minify && npm run copy",
"publish-to-npm": "cd dist && npm publish"
},
"keywords": [
"angular",
"angular2",
"aspnetboilerplate"
],
"author": {
"name": "Halil İbrahim Kalkan",
"email": "hi_kalkan@yahoo.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aspnetboilerplate/abp-ng2-module"
},
"bugs": {
"url": "https://github.com/aspnetboilerplate/abp-ng2-module/issues"
},
"peerDependencies": {
"@angular/common": "^8.0.0",
"@angular/core": "^8.0.0",
"abp-web-resources": "^5.1.1"
},
"devDependencies": {
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": "^8.0.0",
"abp-web-resources": "^5.1.1",
"copyfiles": "^2.1.0",
"rimraf": "^2.6.2",
"rollup": "^0.68.1",
"rxjs": "^6.5.2",
"typescript": "3.4.5",
"uglify-js": "^3.4.9",
"zone.js": "^0.9.1"
}
}