-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.95 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.95 KB
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
{
"name": "@eigenspace/web-browser-test-kit",
"version": "1.1.11",
"repository": {
"type": "git",
"url": "git+https://github.com/eigen-space/web-wdio-e2e-kit.git"
},
"license": "MIT",
"scripts": {
"build:package": "yarn compile && yarn copy:assets",
"compile": "tsc",
"copy:assets": "node ./dev/scripts/copy-assets.js",
"lint:code": "eslint --ext .js,.ts",
"lint:fix": "yarn lint:code --fix",
"lint:markdown": "node ./node_modules/@eigenspace/codestyle/scripts/markdown-lint.js",
"lint": "yarn lint:code . && yarn lint:markdown",
"test": "yarn jest",
"hooks:pre-push": "yarn lint && yarn build:package",
"deploy:publish": "npx -p @eigenspace/package-publisher@0.0.3 publish",
"script:update-deps-remote": "npx -p @eigenspace/helper-scripts update-deps"
},
"husky": {
"hooks": {}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix",
"git add"
]
},
"dependencies": {
"@eigenspace/web-browser-test-creator": "1.0.10-feature-SC-199-screenshots",
"@eigenspace/argument-parser": "1.0.4",
"chromedriver": "84.0.0",
"expect": "26.1.0",
"jest-diff": "26.1.0",
"jest-image-snapshot": "4.1.0",
"ts-node": "8.4.1",
"tsconfig-paths": "3.9.0",
"webdriverio": "6.4.0"
},
"devDependencies": {
"@eigenspace/codestyle": "1.1.67",
"@eigenspace/common-types": "0.0.21-dev",
"@eigenspace/helper-scripts": "2.0.5-core",
"@types/webdriverio": "5.0.0",
"@types/jest": "26.0.7",
"@types/jest-image-snapshot": "3.1.0",
"@types/puppeteer-core": "2.0.0",
"eslint": "5.16.0",
"eslint-plugin-eigenspace-script": "0.0.18",
"husky": "2.3.0",
"jest": "26.1.0",
"lint-staged": "8.1.7",
"ts-jest": "26.1.3",
"typescript": "3.9.7"
}
}