-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.55 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
59
60
61
62
63
64
65
{
"name": "@replanejs/test-suite",
"version": "1.0.2",
"description": "End-to-end test suite for Replane SDK and Admin API",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/replane-dev/replane-javascript#readme",
"bugs": {
"url": "https://github.com/replane-dev/replane-javascript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replane-dev/replane-javascript.git",
"directory": "packages/test-suite"
},
"author": "Dmitry Tilyupo <tilyupo@gmail.com>",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"replane",
"test",
"e2e",
"integration-testing"
],
"sideEffects": false,
"scripts": {
"prebuild": "node ../../scripts/update-version.js .",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "echo 'Use test:e2e to run the test suite'",
"test:e2e": "dotenv -- vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@replanejs/admin": "workspace:^",
"@replanejs/sdk": "workspace:^"
},
"peerDependencies": {
"vitest": ">=2.0.0"
},
"devDependencies": {
"dotenv-cli": "^11.0.0",
"tsdown": "^0.11.9",
"typescript": "^5.8.3",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=18.0.0"
}
}