forked from aspnetboilerplate/abp-ng2-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
{
"name": "abp-ng2-module",
"version": "1.2.0",
"description": "AspNet Boilerplate Angular Module",
"main": "dist/bundles/abp-ng2-module.umd.js",
"module": "dist/index.js",
"scripts": {
"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 && 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": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aspnetboilerplate/abp-ng2-module"
},
"bugs": {
"url": "https://github.com/aspnetboilerplate/abp-ng2-module/issues"
},
"dependencies": {
"@angular/core": "^4.0.0",
"@angular/http": "^4.0.0",
"abp-web-resources": "^2.2.1"
},
"devDependencies": {
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"copyfiles": "^1.0.0",
"rimraf": "^2.5.4",
"rollup": "^0.37.0",
"typescript": "^2.2.2",
"uglify-js": "^2.7.5",
"rxjs": "^5.2.0",
"zone.js": "^0.8.5"
}
}