-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"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"
}