-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
68 lines (68 loc) · 1.33 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
60
61
62
63
64
65
66
67
68
{
"name": "id128",
"description": "Collection of 128-bit Id generators",
"version": "1.6.6",
"author": "Aaron Cohen <aarondcohen@gmail.com>",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js",
"src/",
"utils.js"
],
"homepage": "https://github.com/aarondcohen/id128#id128",
"repository": {
"type": "git",
"url": "git+https://github.com/aarondcohen/id128.git"
},
"bugs": {
"url": "https://github.com/aarondcohen/id128/issues"
},
"browser": {
"./src/common/machine.js": "./src/common/fake-machine.js",
"./src/common/random-bytes.js": "./src/common/random-bytes-browser.js"
},
"scripts": {
"benchmark": "NODE_PATH='./src/' node benchmark/stats.js",
"call": "NODE_PATH='./src/' node",
"dtslint": "dtslint types",
"test": "NODE_PATH='./src/' mocha",
"test-all": "NODE_PATH='./src/' mocha test/*"
},
"engines": {
"node": ">=v6.9.0"
},
"devDependencies": {
"benchmarkify": "github:aarondcohen/benchmarkify",
"chai": "*",
"dtslint": "^3.4.1",
"mocha": "*",
"sinon": "*"
},
"keywords": [
"128-bit",
"crockford32",
"guid",
"id",
"monotonic",
"random",
"rfc-4122",
"rfc4122",
"uid",
"ulid",
"unique",
"universal",
"uuid",
"uuid-v1",
"uuid-v4",
"uuid-v6",
"uuid1",
"uuid4",
"uuid6",
"uuidv1",
"uuidv4",
"uuidv6"
]
}