forked from Agoric/agoric-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
{
"name": "@agoric/smart-wallet",
"version": "0.4.2",
"description": "Wallet contract",
"type": "module",
"scripts": {
"build": "yarn build:bundles",
"build:bundles": "node ./scripts/build-bundles.js",
"test": "ava",
"test:xs": "exit 0",
"lint": "run-s --continue-on-error lint:*",
"lint-fix": "yarn lint:eslint --fix",
"lint:types": "tsc -p jsconfig.json",
"lint:eslint": "eslint ."
},
"devDependencies": {
"@agoric/cosmic-proto": "^0.2.1",
"@agoric/cosmic-swingset": "^0.39.2",
"@agoric/deploy-script-support": "^0.9.4",
"@agoric/inter-protocol": "^0.13.1",
"@agoric/swingset-vat": "^0.30.2",
"@agoric/wallet-backend": "^0.13.3",
"@endo/captp": "^2.0.17",
"@endo/init": "^0.5.51",
"ava": "^4.3.1"
},
"dependencies": {
"@agoric/assert": "^0.5.1",
"@agoric/casting": "^0.3.2",
"@agoric/ertp": "^0.15.3",
"@agoric/internal": "^0.2.1",
"@agoric/nat": "^4.1.0",
"@agoric/notifier": "^0.5.1",
"@agoric/store": "^0.8.3",
"@agoric/vat-data": "^0.4.3",
"@agoric/vats": "^0.13.0",
"@agoric/zoe": "^0.25.3",
"@endo/far": "^0.2.13"
},
"files": [
"src/"
],
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/Agoric/agoric"
},
"author": "Agoric",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Agoric/agoric/issues"
},
"homepage": "https://github.com/Agoric/agoric#readme",
"ava": {
"files": [
"test/**/test-*.js"
],
"timeout": "2m"
},
"publishConfig": {
"access": "public"
}
}