-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
126 lines (126 loc) · 3.64 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
125
126
{
"name": "@ng-apimock/dev-interface",
"description": "Development interface for ng-apimock",
"version": "3.5.1",
"homepage": "https://github.com/ng-apimock/dev-interface#readme",
"author": {
"name": "Mischa Dasberg",
"email": "mischa@dasberg.nl"
},
"main": "index.js",
"scripts": {
"ng": "ng",
"ngapimock": "node test/serve.js",
"prebuild": "rimraf dist",
"build": "ng build --configuration=production",
"postbuild": "mv dist/browser/* dist && rimraf dist/browser",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"test": "jest --config=jest.config.js -w 1",
"start": "ng serve --proxy-config proxy.config.json --host=0.0.0.0",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng-apimock/dev-interface.git"
},
"bugs": {
"url": "https://github.com/ng-apimock/dev-interface/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ng-apimock/dev-interface/blob/master/LICENSE-MIT"
}
],
"keywords": [
"apimock",
"ng-apimock",
"http",
"api",
"local development",
"scenario",
"mocking",
"endpoints",
"responses",
"delay",
"recording"
],
"devDependencies": {
"@angular-eslint/builder": "18.0.0-alpha.1",
"@angular-eslint/eslint-plugin": "18.0.0-alpha.1",
"@angular-eslint/eslint-plugin-template": "18.0.0-alpha.1",
"@angular-eslint/schematics": "18.0.0-alpha.1",
"@angular-eslint/template-parser": "18.0.0-alpha.1",
"@angular/animations": "18.0.0",
"@angular/build": "^18.0.1",
"@angular/cdk": "17.3.3",
"@angular/cli": "18.0.1",
"@angular/common": "18.0.0",
"@angular/compiler": "18.0.0",
"@angular/compiler-cli": "18.0.0",
"@angular/core": "18.0.0",
"@angular/forms": "18.0.0",
"@angular/material": "17.3.3",
"@angular/platform-browser": "18.0.0",
"@angular/platform-browser-dynamic": "18.0.0",
"@angular/router": "18.0.0",
"@badeball/cypress-cucumber-preprocessor": "20.0.3",
"@bahmutov/cypress-esbuild-preprocessor": "2.2.0",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@ng-apimock/base-client": "3.3.1",
"@ng-apimock/core": "3.12.0",
"@ng-apimock/cypress-plugin": "^3.0.0",
"@ng-apimock/protractor-plugin": "2.1.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "12.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.0.3",
"@semantic-release/npm": "12.0.0",
"@semantic-release/release-notes-generator": "13.0.0",
"@types/chai": "4.3.14",
"@types/cucumber": "6.0.1",
"@types/jest": "29.5.12",
"@types/node": "20.12.5",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"body-parser": "1.20.2",
"chai": "5.1.0",
"commitizen": "4.3.0",
"cucumber": "6.0.5",
"cypress": "13.7.2",
"eslint": "8.57.0",
"express": "4.19.2",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-createspyobj": "2.0.0",
"jest-preset-angular": "14.1.0",
"lint-staged": "15.2.2",
"p-iteration": "1.1.8",
"rimraf": "5.0.5",
"rxjs": "7.8.1",
"semantic-release": "23.0.7",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.4.4",
"wait-on": "7.2.0",
"zone.js": "0.14.4"
},
"lint-staged": {
"**/**.{ts}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": [
"test/step_definitions/*.{js,ts}"
]
}
}