-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.93 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
{
"name": "@ng-apimock/protractor-plugin",
"description": "Protractor plugin for ng-apimock",
"version": "2.1.1",
"homepage": "https://github.com/ng-apimock/protractor-plugin#readme",
"author": {
"name": "Mischa Dasberg",
"email": "mischa@dasberg.nl"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"precompile": "rm -rf dist",
"compile": "tsc",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"lint-staged": "lint-staged",
"test": "jest --config=jest.config.js -w 1",
"preprotractor-local": "rm -rf test/.ngapimock",
"protractor-local": "protractor test/protractor.local.conf.js",
"protractor-ci": "protractor test/protractor.ci.conf.js",
"sauce:download": "curl https://saucelabs.com/downloads/sc-4.6.2-linux.tar.gz --output sc-4.6.2-linux.tar.gz",
"postsauce:download": "tar -xvf sc-4.6.2-linux.tar.gz",
"sauce:start": "cd sc-4.6.2-linux && ./bin/sc",
"sauce:started": "wait-on /tmp/sc-started -v",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng-apimock/protractor-plugin.git"
},
"bugs": {
"url": "https://github.com/ng-apimock/protractor-plugin/issues"
},
"license": "MIT",
"keywords": [
"apimock",
"ng-apimock",
"http",
"api",
"protractor",
"plugin",
"angular",
"angularjs"
],
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@ng-apimock/core": "3.6.1",
"@ng-apimock/test-application": "3.5.2",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "9.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/cucumber": "6.0.1",
"@types/fs-extra": "11.0.1",
"@types/jest": "29.2.5",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"commitizen": "4.2.6",
"cucumber": "6.0.7",
"eslint": "8.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-jest": "27.2.1",
"express": "4.18.2",
"fs-extra": "11.1.0",
"http-proxy-middleware": "2.0.6",
"husky": "8.0.3",
"jest": "29.3.1",
"jest-matchers": "20.0.3",
"lint-staged": "13.1.0",
"protractor": "7.0.0",
"protractor-cucumber-framework": "9.0.0",
"rimraf": "4.0.6",
"semantic-release": "20.0.2",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"wait-on": "7.0.1"
},
"dependencies": {
"@ng-apimock/base-client": "3.3.1"
},
"peerDependencies": {
"protractor": ">=6.x"
},
"lint-staged": {
"**/**.{ts}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}