-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "p3-ui-test",
"version": "1.0.1",
"description": "End-to-end test harness for the PATRIC UI",
"main": "test.js",
"devDependencies": {
"axios": "^0.21.1",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"jest-puppeteer": "^4.4.0",
"nodemailer": "^6.4.2",
"puppeteer": "^1.20.0",
"split2": "^3.1.1"
},
"scripts": {
"test": "node ./node_modules/jest/bin/jest.js tests/ui/ --config jest.ui.config.js",
"test-perf": "node ./node_modules/jest/bin/jest.js tests/ui-perf/ --config jest.ui.perf.config.js",
"test-health": "node ./node_modules/jest/bin/jest.js tests/service-health.test.js --config jest.config.js",
"lint": "./node_modules/.bin/eslint tests/*",
"dev:serve": "http-server --cors -p 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PATRIC3/p3-ui-test.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PATRIC3/p3-ui-test/issues"
},
"jest": {
"preset": "jest-puppeteer"
},
"homepage": "https://github.com/PATRIC3/p3-ui-test#readme"
}