-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.89 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
114
115
116
117
118
119
120
121
122
123
124
{
"name": "ngx-pact",
"version": "1.1.0",
"description": "Repository for the pact schematics for angular projects.",
"scripts": {
"prerelease": "npm run build && npm run copy:licence && npm run copy:readme",
"release": "standard-version",
"postrelease": "npm run copy:changelog && npm run copy:package-json && git push --follow-tags origin master && npm publish ./dist/ngx-pact",
"ng": "ng",
"build": "npm run build --prefix ./projects/ngx-pact/",
"build:watch": "npm run build:watch --prefix ./projects/ngx-pact/",
"build:lib": "ng build ngx-pact",
"start": "ng serve",
"test": "ng test --project ngx-pact",
"lint": "ng lint --project ngx-pact",
"commit": "npx git-cz",
"copy:changelog": "cp CHANGELOG.md ./dist/ngx-pact",
"copy:package-json": "cp package.json ./dist/ngx-pact",
"copy:licence": "cp LICENCE ./dist/ngx-pact",
"copy:readme": "cp README.md ./dist/ngx-pact",
"test:ng-add": "npm run build && schematics ./dist/ngx-pact/schematics/collection.json:ng-add --project=pact-test-jest --debug=false",
"test:pact": "ng test --project pact-test"
},
"keywords": [
"angular",
"pact",
"consumer-driven",
"consumer-driven-contract",
"testing",
"schematic",
"karma"
],
"author": "Jan-Niklas Wortmann <[email protected]>",
"engines": {
"node": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/niklas-wortmann/ngx-pact/issues",
"email": "[email protected]"
},
"homepage": "https://niklas-wortmann.com",
"peerDependencies": {
"@angular/core": "^8.0.0",
"@angular/cli": "^8.0.0"
},
"schematics": "./schematics/collection.json",
"license": "MIT",
"dependencies": {
"@schematics/angular": "^8.0.0"
},
"devDependencies": {
"@angular-builders/jest": "^9.0.0",
"@angular-devkit/build-angular": "~0.900.6",
"@angular-devkit/schematics-cli": "^0.901.0",
"@angular/animations": "~9.0.6",
"@angular/cli": "~9.0.6",
"@angular/common": "~9.0.6",
"@angular/compiler": "~9.0.6",
"@angular/compiler-cli": "~9.0.6",
"@angular/core": "~9.0.6",
"@angular/forms": "~9.0.6",
"@angular/platform-browser": "~9.0.6",
"@angular/platform-browser-dynamic": "~9.0.6",
"@angular/platform-server": "~9.0.6",
"@angular/router": "~9.0.6",
"@angular/upgrade": "~9.0.6",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@pact-foundation/karma-pact": "^2.3.1",
"@pact-foundation/pact": "^9.8.2",
"@pact-foundation/pact-node": "^10.7.1",
"@pact-foundation/pact-web": "^9.8.2",
"@types/express": "^4.17.3",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^25.1.4",
"@types/node": "^12.11.1",
"angular-in-memory-web-api": "~0.9.0",
"commitizen": "^4.0.3",
"core-js": "^2.5.4",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.0.2",
"husky": "^3.0.9",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^25.2.1",
"jest-preset-angular": "^8.1.2",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^3.1.1",
"karma-jasmine-html-reporter": "^1.5.3",
"lint-staged": "^10.0.9",
"lodash": "^4.16.2",
"ngx-semantic-version": "^1.2.1",
"prettier": "^1.19.1",
"rxjs": "~6.5.4",
"standard-version": "^7.0.0",
"ts-node": "~8.3.0",
"tslint": "~5.18.0",
"typescript": "~3.7.5",
"zone.js": "~0.10.3"
},
"repository": {
"type": "git",
"url": "https://github.com/niklas-wortmann/ngx-pact"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{src, projects}/**/*.ts": [
"prettier --write",
"git add"
]
}
}