-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.16 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
{
"name": "uid-generator",
"version": "2.0.0",
"description": "Generates cryptographically strong pseudo-random UIDs with custom size and base-encoding",
"author": "Nathan Woltman <[email protected]>",
"license": "MIT",
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=4"
},
"repository": "github:nwoltman/node-uid-generator",
"homepage": "https://github.com/nwoltman/node-uid-generator",
"bugs": "https://github.com/nwoltman/node-uid-generator/issues",
"keywords": [
"uid",
"generator",
"random",
"token",
"unique",
"crypto",
"strong",
"base",
"encoding"
],
"nyc": {
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"branches": 100,
"lines": 100,
"statements": 100
},
"devDependencies": {
"@nwoltman/eslint-config": "~0.5.1",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"should": "^13.2.3"
},
"scripts": {
"lint": "eslint index.js test/*.js",
"test": "eslint index.js test/*.js && nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
}
}