package.json (1011B)
1 { 2 "name": "urbit-ob", 3 "version": "5.0.1", 4 "license": "MIT", 5 "description": "Utilities for Hoon-style atom printing and conversion", 6 "main": "src/index.js", 7 "browser": { 8 "urbit-ob": "./dist/index.js" 9 }, 10 "scripts": { 11 "build": "mkdir -p dist && rollup -c rollup.config.js", 12 "test": "nyc mocha --reporter spec", 13 "prepublishOnly": "npm run build", 14 "lint": "eslint src/" 15 }, 16 "repository": { 17 "type": "git", 18 "url": "git+https://github.com/urbit/urbit-ob.git" 19 }, 20 "keywords": [ 21 "urbit" 22 ], 23 "author": "Tlon", 24 "devDependencies": { 25 "chai": "^4.2.0", 26 "jsverify": "^0.8.3", 27 "mocha": "^5.2.0", 28 "nyc": "^14.1.1", 29 "eslint": "^5.16.0", 30 "rollup": "^1.17.0", 31 "rollup-plugin-commonjs": "^10.0.1", 32 "rollup-plugin-node-builtins": "^2.1.2", 33 "rollup-plugin-node-globals": "^1.4.0", 34 "rollup-plugin-node-resolve": "^5.2.0" 35 }, 36 "dependencies": { 37 "bn.js": "^4.11.8", 38 "lodash.chunk": "^4.2.0", 39 "lodash.isequal": "^4.5.0" 40 } 41 }