-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
49 lines (49 loc) · 1.24 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": "node-couchdb",
"version": "2.0.0",
"homepage": "https://github.com/1999/node-couchdb",
"author": "Dmitry Sorin <[email protected]>",
"description": "ES2015-compatible package to interact with CouchDB",
"contributors": [
"Brad Gardner",
"Eric Scouten",
"Pascal Vomhoff",
"Peter Olson",
"Nick Breland"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/1999/node-couchdb.git"
},
"bugs": {
"url": "https://github.com/1999/node-couchdb/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha --require @babel/register --timeout 10000 --slow 10000 test/",
"build": "./node_modules/@babel/cli/bin/babel.js src/node-couchdb.js --out-file dist/node-couchdb.js",
"prepare": "npm run build"
},
"keywords": [
"couchdb",
"nosql"
],
"dependencies": {
"abort-controller": "^3.0.0",
"node-fetch": "^2"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/register": "^7.18.9",
"mocha": "^10.0.0",
"chai": "^4.1.1",
"dotenv": "^16.0.1",
"node-couchdb-plugin-memory": "^0.0.2"
},
"license": "MIT",
"engines": {
"node": ">=14"
}
}