rfc4122
Version:
JavaScript implementation of RFC4122: A Universally Unique IDentifier (UUID) URN Namespace
60 lines (59 loc) • 2.09 kB
JSON
{
"name": "rfc4122",
"version": "1.0.6",
"description": "JavaScript implementation of RFC4122: A Universally Unique IDentifier (UUID) URN Namespace",
"keywords": [
"rfc4122",
"RFC4122",
"UUID",
"uuid",
"GUID",
"guid",
"hash"
],
"homepage": "https://github.com/tflanagan/node-rfc4122",
"bugs": {
"url": "https://github.com/tflanagan/node-rfc4122/issues",
"email": "contact@tristianflanagan.com"
},
"license": "Apache-2.0",
"author": {
"name": "Tristian Flanagan",
"url": "https://github.com/tflanagan",
"email": "contact@tristianflanagan.com"
},
"maintainers": [
{
"name": "tflanagan",
"url": "https://github.com/tflanagan",
"email": "contact@tristianflanagan.com"
}
],
"contributors": [
"Tristian Flanagan <contact@tristianflanagan.com> (https://github.com/tflanagan)"
],
"main": "rfc4122.js",
"types": "rfc4122.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/tflanagan/node-rfc4122.git"
},
"scripts": {
"test": "node tests/runAll.js",
"build": "babel rfc4122.js > rfc4122.es5.js && browserify rfc4122.es5.js > rfc4122.browserify.js && cat devTools\\LICENSE.js > rfc4122.browserify.min.js && minify rfc4122.browserify.js >> rfc4122.browserify.min.js",
"release-patch": "npm run build && git add -A . && git commit -m \"Release Patch Build\" && npm version patch -m \"Release Patch v%s\" && npm publish && git push --follow-tags",
"release-minor": "npm run build && git add -A . && git commit -m \"Release Minor Build\" && npm version minor -m \"Release Minor v%s\" && npm publish && git push --follow-tags",
"release-major": "npm run build && git add -A . && git commit -m \"Release Major Build\" && npm version major -m \"Release Major v%s\" && npm publish && git push --follow-tags"
},
"dependencies": {},
"devDependencies": {
"browserify": "*",
"minify": "*",
"babel": "*",
"bluebird": "*"
},
"engines": {
"node": ">=0.12.*"
},
"git": "git://github.com/tflanagan/node-rfc4122.git#master"
}