forked from mcollina/hyperid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "hyperid",
"version": "2.0.0",
"description": "Uber-fast unique id generation, for Node.js and the browser",
"main": "hyperid",
"scripts": {
"typescript": "tsc --project ./test/tsconfig.json",
"test": "standard && tape test/test.js test/uniqueness.js | tap-dot && npm run typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/hyperid.git"
},
"keywords": [
"id",
"generation",
"fast"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/hyperid/issues"
},
"homepage": "https://github.com/mcollina/hyperid#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"bloomfilter": "0.0.18",
"hashids": "^1.1.4",
"nid": "^0.3.2",
"pre-commit": "^1.2.2",
"shortid": "^2.2.8",
"standard": "^12.0.0",
"tap-dot": "^2.0.0",
"tape": "^4.9.1",
"typescript": "^2.8.3"
},
"dependencies": {
"uuid": "^3.3.2",
"uuid-parse": "^1.0.0"
}
}