50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
{
|
|
"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"
|
|
]
|
|
}
|
|
}
|