-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.26 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@orchestrator/ngx-dynamic-menu",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/orchestratora/ngx-dynamic-menu.git"
},
"scripts": {
"ct": "git-cz",
"ng": "ng",
"start": "ng serve",
"build": "ng build dynamic-menu",
"test": "ng test --watch=false",
"test:w": "ng test --watch=true",
"test:ci": "npm-run-all -p test:ci:*",
"test:ci:lib": "npm run test -- dynamic-menu --code-coverage --browsers ChromeHeadless",
"test:ci:demo": "npm run test -- demo --browsers ChromeHeadless",
"test:report": "cd coverage/dynamic-menu && codecov",
"lint": "ng lint dynamic-menu",
"e2e": "ng e2e",
"format": "npm-run-all -p format:*",
"format:code": "prettier --write \"projects/**/*.{ts,js,json,?css}\"",
"pack": "copyfiles LICENSE README.md dist/dynamic-menu",
"presemantic-release": "npm run build && npm run pack",
"semantic-release": "semantic-release"
},
"private": true,
"dependencies": {
"@angular/common": "^7.2.9",
"@angular/compiler": "^7.2.9",
"@angular/core": "^7.2.9",
"@angular/platform-browser": "^7.2.9",
"@angular/platform-browser-dynamic": "^7.2.9",
"@angular/router": "^7.2.9",
"core-js": "^2.6.5",
"rxjs": "^6.4.0",
"tslib": "^1.9.3",
"zone.js": "^0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.13.6",
"@angular-devkit/build-ng-packagr": "^0.13.6",
"@angular/cli": "^7.3.6",
"@angular/compiler-cli": "^7.2.9",
"@angular/language-service": "^7.2.9",
"@commitlint/cli": "^7.5.1",
"@commitlint/config-conventional": "^7.5.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.4",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/jasmine": "~3.3.9",
"@types/jasminewd2": "~2.0.6",
"@types/node": "~8.9.4",
"codecov": "^3.1.0",
"codelyzer": "~4.5.0",
"commitizen": "^3.0.7",
"copyfiles": "^2.1.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jasmine-core": "~3.3.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.0.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.5",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"lint-staged": "^8.1.3",
"ng-packagr": "^4.7.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"protractor": "~5.4.0",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"ts-node": "~7.0.0",
"tsickle": "^0.34.3",
"tslint": "~5.11.0",
"typescript": "~3.2.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm-run-all -p lint test"
}
},
"lint-staged": {
"projects/**/*.{ts}": [
"tslint -p tsconfig.json -c tslint.json --fix",
"git add"
],
"projects/**/*.{ts,js,json,?css}": [
"prettier --write",
"git add"
]
}
}