1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "uuid",
|
3 |
|
|
"version": "3.4.0",
|
4 |
|
|
"description": "RFC4122 (v1, v4, and v5) UUIDs",
|
5 |
|
|
"commitlint": {
|
6 |
|
|
"extends": [
|
7 |
|
|
"@commitlint/config-conventional"
|
8 |
|
|
]
|
9 |
|
|
},
|
10 |
|
|
"keywords": [
|
11 |
|
|
"uuid",
|
12 |
|
|
"guid",
|
13 |
|
|
"rfc4122"
|
14 |
|
|
],
|
15 |
|
|
"license": "MIT",
|
16 |
|
|
"bin": {
|
17 |
|
|
"uuid": "./bin/uuid"
|
18 |
|
|
},
|
19 |
|
|
"devDependencies": {
|
20 |
|
|
"@commitlint/cli": "~8.2.0",
|
21 |
|
|
"@commitlint/config-conventional": "~8.2.0",
|
22 |
|
|
"eslint": "~6.4.0",
|
23 |
|
|
"husky": "~3.0.5",
|
24 |
|
|
"mocha": "6.2.0",
|
25 |
|
|
"runmd": "1.2.1",
|
26 |
|
|
"standard-version": "7.0.0"
|
27 |
|
|
},
|
28 |
|
|
"scripts": {
|
29 |
|
|
"lint": "eslint .",
|
30 |
|
|
"test": "npm run lint && mocha test/test.js",
|
31 |
|
|
"md": "runmd --watch --output=README.md README_js.md",
|
32 |
|
|
"release": "standard-version",
|
33 |
|
|
"prepare": "runmd --output=README.md README_js.md"
|
34 |
|
|
},
|
35 |
|
|
"browser": {
|
36 |
|
|
"./lib/rng.js": "./lib/rng-browser.js",
|
37 |
|
|
"./lib/sha1.js": "./lib/sha1-browser.js",
|
38 |
|
|
"./lib/md5.js": "./lib/md5-browser.js"
|
39 |
|
|
},
|
40 |
|
|
"repository": {
|
41 |
|
|
"type": "git",
|
42 |
|
|
"url": "https://github.com/uuidjs/uuid.git"
|
43 |
|
|
},
|
44 |
|
|
"husky": {
|
45 |
|
|
"hooks": {
|
46 |
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
47 |
|
|
}
|
48 |
|
|
}
|
49 |
|
|
}
|