-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "@stove-labs/granary",
"version": "1.0.0-pre-alpha.38",
"description": "All-in toolkit for Tezos development",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/stove-labs/granary.git"
},
"keywords": [
"tezos",
"smart-contracts"
],
"scripts": {
"build": "bsb -make-world",
"build:watch": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "jest",
"test:watch": "jest --watchAll"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/stove-labs/granary/issues"
},
"homepage": "https://github.com/stove-labs/granary#readme",
"bin": {
"granary": "./granary.js",
"granary-config": "./granary-config.js"
},
"dependencies": {
"bs-node": "github:reasonml-community/bs-node",
"bs-platform": "^5.0.4",
"commander": "^2.20.0",
"configstore": "^4.0.0",
"dockerode": "^2.5.8",
"jest": "^24.3.1",
"lodash": "^4.17.11",
"node-emoji": "^1.10.0",
"rimraf": "^2.6.3",
"terminal-link": "^1.3.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.8"
}
}