-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 KB
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
{
"name": "monotonic-id",
"version": "1.1.1",
"description": "JavaScript Unique Monotonic ID Class",
"author": "Gregory Langlais",
"private": false,
"keywords": [
"monotonic-id",
"uuid",
"id",
"identifier",
"unique",
"monotonic",
"sequential",
"sequence"
],
"main": "src/MonotonicID",
"repository": {
"type": "git",
"url": "https://github.com/gregl83/monotonic-id.git"
},
"bugs": {
"url": "https://github.com/gregl83/monotonic-id/issues"
},
"homepage": "https://github.com/gregl83/monotonic-id",
"scripts": {
"test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/"
},
"devDependencies": {
"should": "13.2.3",
"browserify": "17.0.1",
"istanbul": "0.4.5",
"mocha": "11.2.2",
"sinon": "20.0.0",
"uglifyify": "4.0.5"
},
"dependencies": {
"uuid": "11.1.0"
},
"license": "MIT"
}