-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 997 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
37
38
39
40
41
42
43
{
"name": "beanbagdb",
"version": "0.6.3",
"description": "A JS library to introduce a schema layer to a No-SQL local database",
"main": "src/index.js",
"module": "src/index.js",
"type": "module",
"scripts": {
"test": "mocha;rm -rf test_database_*/;",
"docgen": "npx jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shubhvjain/beanbagdb.git"
},
"keywords": [
"couchdb",
"pouchdb",
"local",
"database",
"schema"
],
"author": "svj",
"license": "ISC",
"bugs": {
"url": "https://github.com/shubhvjain/beanbagdb/issues"
},
"homepage": "https://github.com/shubhvjain/beanbagdb#readme",
"devDependencies": {
"ajv": "^8.17.1",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"dotenv": "^16.4.5",
"jsdoc": "^4.0.3",
"mocha": "^10.7.3",
"nano": "^10.1.4",
"pouchdb": "^9.0.0",
"pouchdb-find": "^9.0.0"
},
"mocha": {
"spec": "test/**/*.test.js"
}
}