-
Notifications
You must be signed in to change notification settings - Fork 237
/
Copy pathpackage.json
85 lines (85 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@agoric/solo",
"version": "0.2.4",
"description": "Agoric's Solo vat runner",
"parsers": {
"js": "mjs"
},
"bin": {
"ag-solo": "src/entrypoint.cjs"
},
"main": "src/main.js",
"repository": "https://github.com/Agoric/agoric-sdk",
"scripts": {
"build": "exit 0",
"test": "ava",
"test:xs": "exit 0",
"pretty-fix": "prettier --write '**/*.js'",
"pretty-check": "prettier --check '**/*.js'",
"lint-fix": "yarn lint:eslint --fix && yarn lint:types",
"lint-check": "yarn lint",
"lint": "yarn lint:types && yarn lint:eslint",
"lint:types": "tsc -p jsconfig.json",
"lint:eslint": "eslint '**/*.js'"
},
"keywords": [],
"author": "Agoric",
"license": "Apache-2.0",
"dependencies": {
"@agoric/access-token": "^0.4.2",
"@agoric/assert": "^0.3.1",
"@agoric/babel-standalone": "^7.14.3",
"@agoric/captp": "^1.7.15",
"@agoric/cosmic-swingset": "^0.31.2",
"@agoric/dapp-svelte-wallet": "^0.10.4",
"@agoric/eventual-send": "^0.13.16",
"@agoric/import-bundle": "^0.2.16",
"@agoric/install-ses": "^0.5.15",
"@agoric/marshal": "^0.4.13",
"@agoric/notifier": "^0.3.16",
"@agoric/promise-kit": "^0.2.15",
"@agoric/spawner": "^0.4.16",
"@agoric/store": "^0.4.16",
"@agoric/swing-store-lmdb": "^0.5.1",
"@agoric/swingset-vat": "^0.18.0",
"@agoric/vats": "^0.2.4",
"anylogger": "^0.21.0",
"deterministic-json": "^1.0.5",
"esm": "agoric-labs/esm#Agoric-built",
"express": "^4.17.1",
"minimist": "^1.2.0",
"morgan": "^1.9.1",
"node-fetch": "^2.6.0",
"node-lmdb": "^0.9.4",
"temp": "^0.9.1",
"ws": "^7.2.0"
},
"devDependencies": {
"@agoric/bundle-source": "^1.3.9",
"ava": "^3.12.1"
},
"eslintConfig": {
"extends": [
"@endo"
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=11.0"
},
"ava": {
"files": [
"test/**/test-*.js"
],
"require": [
"esm"
],
"timeout": "20m"
}
}