-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "monotonic-id",
"version": "1.1.0",
"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": {
"mocha": "2.2.x",
"should": "5.2.x",
"sinon": "1.14.x",
"coveralls": "2.11.x",
"istanbul": "0.3.x",
"browserify": "11.0.x",
"uglifyify": "3.0.x"
},
"dependencies": {
"uuid": "^3.0.0"
},
"license": "MIT"
}