-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.66 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": "uuid-with-v6",
"version": "2.0.0",
"description": "UUID Version 6",
"main": "index.js",
"scripts": {
"benchmark": "matcha --reporter plain",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly ./test/unit -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "./node_modules/istanbul/lib/cli.js cover --report=json-summary --report=html _mocha ./test/unit -- --recursive",
"test": "node node_modules/mocha/bin/mocha ./test --recursive",
"test-unit": "node node_modules/mocha/bin/mocha ./test/unit --recursive"
},
"engines": {
"node": ">8.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurttheviking/uuid-with-v6-js.git"
},
"keywords": [
"uuid",
"uuid-v6",
"uuid6",
"guid",
"rfc4122"
],
"author": {
"name": "Kurt Ericson",
"email": "github@kurttheviking.com",
"url": "https://github.com/kurttheviking"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/kurttheviking/uuid-with-v6-js/issues"
},
"homepage": "https://github.com/kurttheviking/uuid-with-v6-js#readme",
"dependencies": {
"uuid": "8.3.2"
},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.12.0",
"eslint": "3.9.1",
"eslint-config-airbnb-base": "10.0.1",
"eslint-plugin-import": "2.2.0",
"flake-idgen": "1.4.0",
"istanbul": "0.4.5",
"matcha": "0.7.0",
"mocha": "3.1.2",
"mocha-eslint": "3.0.1",
"mockery": "2.0.0",
"puid": "1.0.7",
"scuid": "1.1.0",
"shortid": "2.2.16",
"sinon": "1.17.7",
"ulid": "2.3.0",
"uniqid": "5.4.0"
}
}