-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.54 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
{
"name": "base-id",
"version": "3.3.0",
"description": "Encode, decode, and generate base-58 and base-62 identifiers. Convertible MongoDB ObjectIds!",
"main": "index.js",
"scripts": {
"clean": "rm -rf .nyc_output coverage",
"test": "node_modules/.bin/mocha -R spec test",
"cover": "node_modules/.bin/nyc node_modules/mocha/bin/_mocha --exit",
"lint": "node_modules/.bin/eslint .",
"report": "npm run cover && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/kfitzgerald/base-id.git"
},
"keywords": [
"base",
"base58",
"base62",
"objectid",
"mongodb"
],
"author": "Kevin Fitzgerald",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"mocha": "^10.0.0",
"mongodb": "^4.7.0",
"should": "^13.2.3",
"eslint": "^8.18.0",
"nyc": "^15.1.0"
},
"mocha": {
"reporter": "spec",
"checkLeaks": true
},
"nyc": {
"reporter": [
"text-summary",
"html",
"lcovonly"
]
},
"engines": {
"node": ">=10"
},
"eslintConfig": {
"ignorePatterns": [
"/node_modules/**",
"/coverage/**",
"/.nyc_output/**"
],
"env": {
"es6": true,
"node": true,
"es2020": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
],
"extends": "eslint:recommended",
"globals": {
"require": true,
"module": true,
"describe": true,
"it": true,
"before": true,
"after": true
}
}
}