-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "couchdb-auth-proxy",
"version": "0.0.0-edge",
"description": "An HTTP reverse proxy library for quick and dirty Couchdb proxy authentication",
"author": "Tyler Johnson <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tyler-johnson/couchdb-auth-proxy.git"
},
"main": "index.js",
"scripts": {
"lint": "eslint src/ test/",
"build": "make clean && make",
"test": "make test.js && node test.js",
"prepublish": "npm run build",
"autorelease": "autorelease pre && npm publish && autorelease post"
},
"dependencies": {
"http-proxy": "^1.14.0",
"transformer-proxy": "^0.3.3"
},
"devDependencies": {
"autorelease": "^1.7.1",
"autorelease-github": "^1.2.0",
"autorelease-travis": "^1.2.1",
"babel-eslint": "^6.1.2",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-parameters": "^6.11.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"eslint": "^3.2.2",
"express": "^4.15.2",
"rollup": "^0.34.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-json": "^2.0.1",
"supertest": "^3.0.0",
"tape": "^4.6.3",
"tape-promise": "^2.0.1"
},
"keywords": [],
"license": "MIT",
"files": [
"index.js"
]
}