forked from 1999/node-couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.67 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.67 KB
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
50
51
52
{
"name": "node-couchdb",
"version": "1.1.1",
"homepage": "https://github.com/1999/node-couchdb",
"author": "Dmitry Sorin <info@staypositive.ru>",
"description": "ES2015-compatible package to interact with CouchDB",
"contributors": [
"Eric Scouten",
"Pascal Vomhoff",
"Peter Olson"
],
"main": "./dist/es2015.js",
"repository": {
"type": "git",
"url": "git://github.com/1999/node-couchdb.git"
},
"bugs": {
"url": "https://github.com/1999/node-couchdb/issues"
},
"scripts": {
"prepublish": "npm run release:legacy && npm run release:es2015",
"release:legacy": "./node_modules/.bin/babel lib/node-couchdb.js --out-file dist/legacy.js --no-babelrc --presets es2015 --plugins array-includes",
"release:es2015": "./node_modules/.bin/babel lib/node-couchdb.js --out-file dist/es2015.js",
"test": "./node_modules/.bin/mocha --compilers js:babel-register --timeout 10000 --slow 10000 test/"
},
"keywords": [
"couchdb",
"nosql"
],
"dependencies": {
"request": "^2.79.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"node-couchdb-plugin-memory": "^0.0.2"
},
"license": "MIT",
"engines": {
"node": ">=4"
}
}