-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
34 lines (34 loc) · 876 Bytes
/
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
{
"name": "bamboo",
"version": "0.0.02",
"description": "A compiler targeting Ethereum Virtual Machine",
"keywords": [
"ethereum",
"smart-contracts",
"blockchain",
"virtual machine",
"compiler"
],
"repository": {
"type": "git",
"url": "https://github.com/pirapira/bamboo"
},
"homepage": "https://github.com/pirapira/bamboo",
"author": "Yoichi Hirai <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"bs-platform": "bsansouci/bsb-native#2.1.1"
},
"scripts": {
"build": "bsb -make-world -backend native",
"build-js": "bsb -make-world -backend js",
"watch": "bsb -make-world -backend native -w",
"test": "npm run build && ./lib/bs/native/test.native",
"clean": "bsb -clean-world"
},
"dependencies": {
"bn.js": "^4.11.8",
"bs-bn.js": "0.0.2",
"keccak": "^1.4.0"
}
}