forked from One-com/beanbag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "beanbag",
"version": "4.10.0",
"description": "Generic CouchDB driver built upon the teepee module",
"main": "lib/BeanBag.js",
"author": "Andreas Lind @papandreou <[email protected]>",
"license": "BSD-3-Clause",
"repository": "git://github.com/One-com/beanbag",
"scripts": {
"lint": "jshint .",
"test": "mocha && npm run lint",
"travis": "npm test && npm run coverage && (<coverage/lcov.info coveralls || true)",
"coverage": "NODE_ENV=development istanbul cover _mocha --report text --report lcov -- --reporter dot && echo google-chrome coverage/lcov-report/index.html"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"async": "1.3.0",
"byline": "4.2.1",
"passerror": "0.0.1",
"teepee": "3.0.1",
"underscore": "^1.13.6"
},
"devDependencies": {
"coveralls": "^3.1.1",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^10.2.0",
"sinon": "^1.17.6",
"unexpected": "^10.40.2",
"unexpected-mitm": "^14.1.0",
"unexpected-sinon": "^11.1.0"
}
}