-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "@smartesting/gravity-cypress-plugin",
"version": "0.1.12",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"files": [
"/dist"
],
"engines": {
"node": ">=20.x"
},
"scripts": {
"tsc": "tsc",
"build": "tsc --project tsconfig.build.json --outDir dist",
"test": "ts-mocha",
"test:unit": "ts-mocha --config .mocharc.unit.json",
"test:integration": "ts-mocha --config .mocharc.integration.json",
"cypress:open": "cypress open",
"cypress:run": "cypress run --e2e --browser=electron",
"start:server": "ts-node test/utils/testServer.ts",
"prepublishOnly": "npm run build && npm run test:unit && npm run prettier:check && INTEGRATION_TEST_TIMEOUT=30000 npm run test:integration",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write",
"prepare": "husky"
},
"dependencies": {
"@smartesting/gravity-data-collector": "^8.0.0",
"cross-fetch": "^4.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/assert": "^1.5.10",
"@types/express": "^4.17.21",
"@types/jsdom": "^21.1.6",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.3",
"@types/uuid": "^9.0.8",
"assert": "^2.1.0",
"cypress": "^13.7.2",
"express": "^4.19.2",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"mocha": "^10.4.0",
"prettier": "3.2.5",
"sinon": "^17.0.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"cypress": "^13.7.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}