-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "nano",
"description": "The official CouchDB client for Node.js",
"license": "Apache-2.0",
"homepage": "http://github.com/apache/couchdb-nano",
"repository": "http://github.com/apache/couchdb-nano",
"version": "10.1.4",
"author": "Apache CouchDB <dev@couchdb.apache.org> (http://couchdb.apache.org)",
"keywords": [
"couchdb",
"data",
"request",
"json",
"nosql",
"micro",
"nano",
"database"
],
"dependencies": {
"axios": "^1.7.4",
"qs": "^6.13.0",
"node-abort-controller": "^3.1.1"
},
"devDependencies": {
"@types/node": "^22.3.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"standard": "^17.1.0",
"typescript": "^5.5.4"
},
"scripts": {
"standard": "standard --fix",
"test": "standard && tsc lib/nano.d.ts && npm run jest",
"jest": "jest test/* --coverage --env node"
},
"main": "./lib/nano.js",
"types": "./lib/nano.d.ts",
"engines": {
"node": ">=14"
},
"pre-commit": [
"test"
],
"standard": {
"env": [
"jest"
]
}
}