up8-ticket

Securely generate UP8-compatible, @q-encoded master tickets.
git clone git://git.jtobin.io/up8-ticket.git
Log | Files | Refs | README | LICENSE

package.json (1172B)


      1 {
      2   "name": "up8-ticket",
      3   "version": "0.2.0",
      4   "description": "Generate, share, and combine UP8 master tickets",
      5   "main": "src/index.js",
      6   "browser": {
      7     "up8-ticket": "./dist/index.js"
      8   },
      9   "scripts": {
     10     "test": "nyc mocha --reporter spec test/test.js",
     11     "build": "mkdir -p dist && browserify src/index.js -s up8-ticket > dist/index.js",
     12     "lint": "eslint src/",
     13     "prepublishOnly": "npm run build"
     14   },
     15   "repository": {
     16     "type": "git",
     17     "url": "git+https://github.com/urbit/up8-ticket.git"
     18   },
     19   "keywords": [
     20     "urbit"
     21   ],
     22   "bugs": {
     23     "url": "https://github.com/urbit/up8-ticket/issues"
     24   },
     25   "homepage": "https://github.com/urbit/up8-ticket#readme",
     26   "author": "~nidsut-tomdun",
     27   "license": "MIT",
     28   "dependencies": {
     29     "hash.js": "^1.1.7",
     30     "hmac-drbg": "^1.0.1",
     31     "lodash.chunk": "^4.2.0",
     32     "lodash.flatmap": "^4.5.0",
     33     "lodash.zipwith": "^4.2.0",
     34     "more-entropy": "0.0.7",
     35     "secrets.js-grempe": "2.0.0",
     36     "urbit-ob": "^5.0.1"
     37   },
     38   "devDependencies": {
     39     "browserify": "^16.5.2",
     40     "chai": "^4.2.0",
     41     "eslint": "^7.9.0",
     42     "jsverify": "^0.8.4",
     43     "mocha": "^8.1.3",
     44     "nyc": "^15.1.0"
     45   }
     46 }