-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "angular-npm-module-seed",
"version": "1.0.0",
"description": "Starting point for developing Angular modules and publishing them on NPM",
"keywords": [
"angular 2"
],
"main": "index.js",
"scripts": {
"clean": "rimraf .tmp && rimraf dist",
"transpile": "ngc",
"package": "rollup -c",
"minify": "./node_modules/uglify-js/bin/uglifyjs dist/bundles/npm-module-seed.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/npm-module-seed.umd.min.js",
"copy": "cpx './package-dist.json' dist && renamer --find 'package-dist.json' --replace 'package.json' ./dist/*",
"build": "npm run clean && npm run transpile && npm run package && npm run minify && npm run copy"
},
"license": "MIT",
"homepage": "https://github.com/davguij/angular-npm-module-seed",
"bugs": {
"url": "https://github.com/davguij/angular-npm-module-seed/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/davguij/angular-npm-module-seed.git"
},
"devDependencies": {
"@angular/compiler": "^2.4.4",
"@angular/compiler-cli": "^2.4.4",
"cpx": "^1.5.0",
"renamer": "^0.6.1",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"typescript": "~2.0.0",
"uglify-js": "^2.7.5"
},
"dependencies": {
"@angular/common": "^2.4.4",
"@angular/core": "^2.4.4",
"rxjs": "^5.0.3",
"zone.js": "^0.7.6"
}
}