-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "explorer-e2e",
"version": "1.0.0",
"description": "Explorer e2e tests by Keen IO",
"main": "index.js",
"license": "MIT",
"scripts": {
"e2e": "cypress run",
"e2e:open": "cypress open",
"prettier": "prettier --write '{src,cypress}/**/*.{js,ts,tsx,json}'",
"release": "standard-version",
"commit": "npx git-cz"
},
"bugs": "https://github.com/keen/explorer-e2e/issues",
"author": "Keen IO <[email protected]> (https://keen.io/)",
"homepage": "https://keen.io",
"keywords": [
"Keen.io",
"explorer e2e"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@cypress/webpack-preprocessor": "^5.9.0",
"@types/cypress-cucumber-preprocessor": "^4.0.0",
"commitizen": "^4.0.3",
"cypress": "^9.1.0",
"cypress-cucumber-preprocessor": "^4.1.1",
"cypress-wait-until": "^1.7.1",
"cz-conventional-changelog": "^3.0.2",
"git-cz": "^3.3.0",
"husky": "^4.2.5",
"node-polyfill-webpack-plugin": "^1.1.2",
"prettier": "^2.5.0",
"standard-version": "^7.0.1",
"ts-loader": "^8.3.0",
"typescript": "^3.9.3",
"webpack": "^5.37.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": "cypress/integration",
"nonGlobalStepDefinitions": false
}
}