https://github.com/CornellBlockchain/bamboo
Raw File
Tip revision: bd27f8dfdb6f020ab1b24657e8dcb9624604333b authored by Yoichi Hirai on 30 May 2018, 19:14:02 UTC
Merge pull request #291 from iurimatias/master
Tip revision: bd27f8d
package.json
{
  "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 <i@yoichihirai.com>",
  "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"
  }
}
back to top