-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.43 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": "polaris-suite",
"version": "0.7.2",
"description": "easy to use, light weight and collaborative automated testing suite for web applications",
"main": "index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src",
"build/bin",
"types"
],
"exports": {
".": {
"default": "./build/src/index.js",
"types": "./build/src/index.d.ts"
},
"./package.json": "./package.json",
"./bin": "./build/bin/test.js"
},
"scripts": {
"test:unit": "npx tsc && node build/bin/test.js build/__tests__ --only index.js",
"test:e2e": "npx tsc && node build/bin/test.js build/__tests__ --only index.js --automation",
"dev": "tsc && node build/src/index.js",
"build": "tsc"
},
"bin": {
"polaris": "build/bin/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polars-suite/polaris-suite.git"
},
"keywords": [
"testing",
"automation",
"test",
"automation testing",
"testing suite",
"javascript",
"typescript"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/polaris-suite/polaris-suite/issues"
},
"homepage": "https://github.com/polaris-suite/polaris-suite#readme",
"devDependencies": {
"@types/jsdom": "^21.1.1",
"@types/node": "^18.11.18",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.4.0",
"jsdom": "^22.0.0",
"puppeteer": "^20.2.1"
}
}