package.json
1 { 2 "name": "uid-safe", 3 "description": "URL and cookie safe UIDs", 4 "version": "2.1.5", 5 "contributors": [ 6 "Douglas Christopher Wilson <doug@somethingdoug.com>", 7 "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" 8 ], 9 "license": "MIT", 10 "repository": "crypto-utils/uid-safe", 11 "dependencies": { 12 "random-bytes": "~1.0.0" 13 }, 14 "devDependencies": { 15 "bluebird": "3.5.0", 16 "eslint": "3.19.0", 17 "eslint-config-standard": "10.2.1", 18 "eslint-plugin-import": "2.7.0", 19 "eslint-plugin-node": "5.1.1", 20 "eslint-plugin-promise": "3.5.0", 21 "eslint-plugin-standard": "3.0.1", 22 "istanbul": "0.4.5", 23 "mocha": "2.5.3" 24 }, 25 "files": [ 26 "LICENSE", 27 "HISTORY.md", 28 "README.md", 29 "index.js" 30 ], 31 "engines": { 32 "node": ">= 0.8" 33 }, 34 "scripts": { 35 "lint": "eslint .", 36 "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/", 37 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --trace-deprecation --reporter dot --check-leaks test/", 38 "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --trace-deprecation --reporter spec --check-leaks test/" 39 }, 40 "keywords": [ 41 "random", 42 "generator", 43 "uid", 44 "safe" 45 ] 46 }