-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 973 Bytes
/
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
{
"name": "couchdb-expression",
"version": "1.6.1",
"description": "Express Session Store for CouchDB",
"main": "index.js",
"repository": "https://github.com/tkshnwesper/couchdb-expression",
"author": "Saurabh M. Machave",
"license": "MIT",
"scripts": {
"test": "nyc --reporter=lcov mocha",
"build": "babel src --out-dir lib",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"/lib"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint": "6.8.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"mocha": "^10.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0",
"prettier-eslint": "^10.0.0",
"sinon": "^9.0.0"
},
"dependencies": {
"chalk": "^4.0.0",
"nano": "^10.1.4"
}
}