-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
36 lines (36 loc) · 863 Bytes
/
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
{
"name": "nedb-promises",
"version": "6.2.3",
"description": "A dead-simple promise wrapper for nedb.",
"main": "index.js",
"scripts": {
"docs": "jsdoc2md ./src/*.js > docs.md --no-gfm",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bajankristof/nedb-promises.git"
},
"keywords": [
"nedb",
"promises",
"promise"
],
"author": "Kristóf Baján",
"license": "MIT",
"bugs": {
"url": "https://github.com/bajankristof/nedb-promises/issues"
},
"homepage": "https://github.com/bajankristof/nedb-promises#readme",
"dependencies": {
"@seald-io/nedb": "^4.0.2"
},
"devDependencies": {
"eslint": "^8.6.0",
"jest": "^29.0.3",
"jsdoc-to-markdown": "^8.0.0"
}
}