-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 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
{
"name": "@kormanowsky/test-sequencer",
"version": "0.2.0",
"description": "A set of test sequencers to use with TS/JS test frameworks",
"main": "dist/",
"scripts": {
"build": "npx tsc",
"test": "npx jest",
"prepublishOnly": "rm -rf dist && npm run build"
},
"exports": {
".": "./dist/index.js",
"./jest": "./dist/jest/index.js",
"./playwright": "./dist/playwright/index.js"
},
"bin": {
"kts": "./bin/kts.js",
"kts-pw": "./bin/kts-pw.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kormanowsky/test-sequencer.git"
},
"author": "Mikhail Kormanovskii <kormanowsky@gmail.com>",
"license": "ISC",
"files": [
"dist/",
"bin/"
],
"bugs": {
"url": "https://github.com/kormanowsky/test-sequencer/issues"
},
"homepage": "https://github.com/kormanowsky/test-sequencer#readme",
"dependencies": {
"@kormanowsky/distrib": "0.0.4",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@types/jest": "29.5.13",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"typescript": "5.6.2"
},
"peerDependencies": {
"@jest/test-sequencer": "29.7.0",
"@playwright/test": "1.38.0"
}
}