-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "seeded-hashids",
"version": "1.6.2",
"description": "Generate seeded Hashids that is unique per scope.",
"main": "seeded-hashids.js",
"scripts": {
"lint": "./node_modules/.bin/eslint seeded-hashids.js tests",
"test": "./node_modules/.bin/mocha tests",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf coverage .nyc_output npm-debug.log",
"all": "npm run lint && npm run coverage && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/licitdev/seeded-hashids.git"
},
"keywords": [
"hashids",
"hashid",
"hash",
"ids",
"seed",
"seeded",
"shuffle",
"encode",
"decode",
"objectid",
"mongodb",
"mongoose"
],
"author": "ian <[email protected]> (http://licitdev.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/licitdev/seeded-hashids/issues"
},
"homepage": "https://github.com/licitdev/seeded-hashids#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"mocha": "^10.2.0",
"mongodb": "^3.2.7",
"mongoose": "^5.6.4",
"nyc": "^14.1.1",
"shuffle-seed": "^1.1.6"
},
"dependencies": {
"hashids": "^1.2.2"
}
}