-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "generator-ng2-library",
"version": "0.0.0-development",
"description": "Generator for Angular2+ libraries",
"main": "./dist/ng-library.umd.js",
"module": "./dist/ng-library.es5.js",
"es2015": "./dist/ng-library.js",
"typings": "./dist/ng-library.d.ts",
"author": "Andrea Sonny <andreasonny83@gmail.com> (https://github.com/andreasonny83)",
"license": "MIT",
"homepage": "https://github.com/andreasonny83/generator-ng2-library#readme",
"engines": {
"node": ">= 6.11.1",
"npm": ">= 3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/andreasonny83/generator-ng2-library.git"
},
"bugs": {
"url": "https://github.com/andreasonny83/generator-ng2-library/issues"
},
"keywords": [
"ng",
"ng2",
"angular",
"angular2",
"angular2-libraries",
"angular-libraries",
"angular2-components",
"angular-components",
"generator",
"typescript",
"node_modules",
"rollup"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "scripts/build.sh",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"rxjs": "^5.1.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/compiler-cli": "^4.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"rollup": "~0.43.0",
"rollup-plugin-cleanup": "^1.0.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve-angular": "^2.0.3",
"rollup-plugin-uglify": "^2.0.1",
"semantic-release": "^6.3.6",
"tslint": "~4.5.0",
"typescript": "~2.4.1"
},
"peerDependencies": {
"@angular/core": ">=4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}