forked from holochain/tryorama
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.94 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.94 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
66
67
68
69
{
"name": "@holochain/tryorama",
"description": "Toolset to manage Holochain conductors and facilitate running test scenarios",
"version": "0.20.0-dev.0",
"author": "Holochain Foundation",
"license": "MIT",
"keywords": [
"holochain",
"conductor",
"test",
"e2e"
],
"repository": {
"type": "git",
"url": "https://github.com/holochain/tryorama"
},
"type": "module",
"engines": {
"node": ">=20.0.0 || >=22.0.0"
},
"exports": {
".": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rimraf ./lib && tsc && npm run build:docs",
"build:docs": "api-extractor run --local && api-documenter markdown -i docs/temp -o docs",
"prepare": "npm run lint && npm run format",
"lint": "eslint --fix --ext .ts ts/src ts/test eslint.config.mjs",
"format": "prettier --write \"ts/**/*.ts\"",
"test": "vitest --run",
"test:conductor": "vitest --run ts/test/conductor.test.ts",
"test:scenario": "vitest --run ts/test/scenario.test.ts",
"test:util": "vitest --run ts/test/util.test.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@holochain/client": "^0.20.0",
"get-port": "^7.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"uuid": "^11.0.0",
"winston": "^3.8.2",
"ws": "^8.11.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@microsoft/api-documenter": "^7.19.27",
"@microsoft/api-extractor": "^7.33.7",
"@msgpack/msgpack": "^3.1.1",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.191",
"@types/ramda": "^0.30.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-plugin-tsdoc": "^0.4.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.1.4"
}
}