-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 823 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
{
"name": "@cuvva/ksuid",
"version": "1.0.2",
"description": "Generate prefixed, k-sorted globally unique identifiers.",
"homepage": "https://github.com/cuvva/ksuid-node",
"bugs": "https://github.com/cuvva/ksuid-node/issues",
"license": "MIT",
"author": "Cuvva (https://cuvva.com)",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cuvva/ksuid-node.git"
},
"scripts": {
"test": "tape test/index.js",
"test-travis": "istanbul cover test/index.js --report lcovonly"
},
"dependencies": {
"base-x": "^3.0.5",
"buffer": "^6.0.3",
"path-browserify": "^1.0.1"
},
"devDependencies": {
"coveralls": "^3.0.4",
"istanbul": "^0.4.5",
"mock-fs": "^5.0.0",
"mock-os": "0.0.1",
"mockdate": "^3.0.0",
"tape": "^5.0.0"
}
}