-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.45 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
110
111
112
113
{
"name": "@orchestrator/ngx-testing",
"version": "0.0.0-develop",
"repository": {
"type": "git",
"url": "https://github.com/orchestratora/ngx-testing.git"
},
"scripts": {
"ct": "git-cz",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --prod",
"test": "ng test",
"test:w": "ng test --watch",
"test:ci": "npm run test -- --runInBand --coverage",
"test:report": "cd coverage/ngx-testing && codecov",
"lint": "ng lint",
"e2e": "ng e2e",
"format": "prettier --write \"projects/**/*.{ts,js,json,?css,html}\"",
"format:check": "prettier --check \"projects/**/*.{ts,js,json,?css,html}\"",
"pack": "copyfiles LICENSE README.md dist/ngx-testing",
"presemantic-release": "npm run pack",
"semantic-release": "semantic-release"
},
"private": true,
"dependencies": {
"@angular/animations": "^9.0.0",
"@angular/common": "^9.0.0",
"@angular/compiler": "^9.0.0",
"@angular/core": "^9.0.0",
"@angular/forms": "^9.0.0",
"@angular/platform-browser": "^9.0.0",
"@angular/platform-browser-dynamic": "^9.0.0",
"@angular/router": "^9.0.0",
"core-js": "^3.0.0",
"rxjs": "^6.5.4",
"tslib": "^1.10.0",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-builders/jest": "^9.0.0-beta.3",
"@angular-devkit/build-angular": "^0.900.1",
"@angular-devkit/build-ng-packagr": "^0.900.1",
"@angular-eslint/builder": "0.0.1-alpha.18",
"@angular-eslint/eslint-plugin": "0.0.1-alpha.18",
"@angular-eslint/eslint-plugin-template": "0.0.1-alpha.18",
"@angular-eslint/template-parser": "0.0.1-alpha.18",
"@angular/cli": "^9.0.1",
"@angular/compiler-cli": "^9.0.0",
"@angular/language-service": "^9.0.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.3",
"@semantic-release/npm": "^7.0.2",
"@semantic-release/release-notes-generator": "^9.0.0",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"codecov": "^3.6.5",
"commitizen": "^4.0.3",
"copyfiles": "^2.2.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jasmine-core": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"ng-packagr": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.2",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"tsickle": "^0.38.0",
"typescript": "~3.7.5"
},
"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}": [
"ng lint ngx-testing --fix --files"
],
"projects/**/*.{ts,js,json,?css,html}": [
"prettier --write"
]
}
}