-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "--pkg-name",
"version": "0.0.0-development",
"description": "Skeleton to build angular npm package",
"homepage": "https://github.com/--username/--pkg-name#readme",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"author": {
"name": "--author-name",
"email": "--author-email",
"url": "--author-url"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"Angular",
"NPM"
],
"devDependencies": {
"@angular/common": "5.2.2",
"@angular/compiler": "5.2.2",
"@angular/platform-browser": "5.2.2",
"@angular/platform-browser-dynamic": "5.2.2",
"codecov.io": "0.1.6",
"codelyzer": "4.1.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"ghooks": "2.0.2",
"npm-run-all": "4.1.2",
"semantic-release": "^12.4.1",
"tslint": "5.9.1",
"typescript": "2.6.2"
},
"dependencies": {
"@angular/core": "5.2.2",
"rxjs": "5.5.6",
"zone.js": "0.8.20"
},
"bugs": {
"url": "https://github.com/--username/--pkg-name/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/--username/--pkg-name.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}