sguid
Version:
Signed Globally Unique Identifier (SGUID) generator.
72 lines • 1.68 kB
JSON
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"bin": "dist/bin/index.js",
"dependencies": {
"base64-url": "^1.3.3",
"es6-error": "^4.0.1",
"tweetnacl": "^0.14.5",
"tweetnacl-util": "^0.13.5",
"yargs": "^6.6.0"
},
"description": "Signed Globally Unique Identifier (SGUID) generator.",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-preset-env": "^1.1.8",
"benchmark": "^2.1.3",
"coveralls": "^2.11.15",
"eslint": "^3.11.1",
"eslint-config-canonical": "^6.0.0",
"flow-bin": "^0.37.4",
"husky": "^0.12.0",
"nyc": "^10.0.0",
"semantic-release": "^6.3.5"
},
"engines": {
"node": ">5.0.0"
},
"keywords": [
"encryption",
"GUID"
],
"license": "BSD-3-Clause",
"main": "dist/index.js",
"name": "sguid",
"nyc": {
"include": [
"src/**/*.js"
],
"instrument": false,
"reporter": [
"text-lcov"
],
"require": [
"babel-register"
],
"sourceMap": false
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/sguid"
},
"scripts": {
"benchmark": "NODE_ENV=production node benchmark/test.js",
"build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --source-maps",
"lint": "eslint ./src && flow",
"precommit": "npm run test && npm run lint",
"test": "NODE_ENV=development ava --verbose"
},
"version": "1.1.0"
}