-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "azimuth-cli",
"version": "1.1.0",
"description": "Urbit Bridge for the command line",
"main": "index.js",
"bin": {
"azimuth-cli": "cli.js",
"azi": "cli.js"
},
"scripts": {
"test:deploy": "cd node_modules/azimuth-solidity && truffle deploy",
"test:ganache": "ganache-cli --networkId 1 -m 'benefit crew supreme gesture quantum web media hazard theory mercy wing kitten' > /dev/null &",
"test:setup": "npm run test:ganache && npm run test:deploy",
"test:mocha": "nyc mocha --reporter spec --timeout 5000 --exit",
"test:cleanup": "pkill -f ganache-cli",
"test": "npm-run-all test:setup test:mocha test:cleanup --continue-on-error"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukebuehler/azimuth-cli.git"
},
"author": "Lukas Buhler",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukebuehler/azimuth-cli/issues"
},
"homepage": "https://github.com/lukebuehler/azimuth-cli#readme",
"keywords": [
"azimuth",
"ecliptic",
"urbit",
"urbitID",
"cli"
],
"devDependencies": {
"nyc": "^15.1.0",
"chai": "^4.3.4",
"mocha": "^9.2.0",
"ganache-cli": "^6.12.2",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"axios": "^0.25.0",
"azimuth-js": "^0.23.0",
"chalk": "^4.1.2",
"hdkey": "2.0.1",
"json-rpc-2.0": "^1.1.0",
"lodash": "^4.17.21",
"up8-ticket": "^0.2.0",
"urbit-key-generation": "^0.20.1",
"urbit-ob": "^5.0.1",
"web3": "^1.7.0",
"yargs": "^17.3.1"
}
}