-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "riteway-testing-library",
"version": "0.1.0",
"description": "Testing framework built to work with hardened-js code.",
"type": "module",
"main": "./index.js",
"module": "./index.js",
"exports": {
".": "./index.js"
},
"scripts": {
"test": "ava --verbose"
},
"dependencies": {
"@agoric/assert": "^0.6.0",
"@agoric/ertp": "^0.16.0",
"@agoric/swingset-liveslots": "^0.10.1",
"@agoric/swingset-vat": "^0.32.1",
"@agoric/zoe": "^0.26.0",
"@endo/eventual-send": "^0.17.2",
"@endo/far": "^0.2.18",
"@endo/nat": "^4.1.27",
"jessie.js": "^0.3.2"
},
"devDependencies": {
"@endo/bundle-source": "^2.5.1",
"@endo/init": "^0.5.56",
"@fast-check/ava": "^1.1.3",
"ava": "^5.2.0"
},
"ava": {
"files": [
"test/**/test-*.js"
]
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/lari-labs/riteway"
},
"author": "Agoric",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lari-labs/riteway/issues"
},
"homepage": "https://github.com/lari-labs/riteway#readme",
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}