-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "id-generators",
"version": "1.0.6",
"description": "id-generators is small JavaScript library to generate ID with awesome Unique ID libraries.",
"main": "lib/index.js",
"scripts": {
"lint": "prettier --write . && xo",
"lint:fix": "prettier --write . && xo --fix",
"test": "mocha test/index.js",
"test:cov": "nyc npm run test",
"test:loop": "while npm test --silent; do :; done",
"preinstall": "unlink-self 2>&1 | echo unlink-self"
},
"dependencies": {
"cuid": "^2.1.6",
"nanoid": "^3.1.11"
},
"devDependencies": {
"chai": "^4.2.0",
"id-generators": "file:.",
"mocha": "^8.0.1",
"nanoid-good": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "latest",
"unlink-self": "latest",
"xo": "latest"
},
"peerDependencies": {
"nanoid-good": "^1.3.0"
},
"keywords": [
"generate",
"generator",
"id",
"uuid",
"unique-id",
"cuid",
"nanoid",
"url"
],
"files": [
"lib/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=8.6.0"
},
"author": "dailyrandomphoto <dailyrandomphoto@gmail.com> (https://www.dailyrandomphoto.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dailyrandomphoto/id-generators.git"
},
"bugs": {
"url": "https://github.com/dailyrandomphoto/id-generators/issues"
},
"homepage": "https://github.com/dailyrandomphoto/id-generators#readme",
"xo": {
"space": 2,
"prettier": true,
"rules": {
"promise/prefer-await-to-then": 0,
"capitalized-comments": 0
},
"overrides": [
{
"files": "test/*.js",
"envs": [
"node",
"mocha"
]
}
]
}
}