-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.26 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
50
51
52
53
54
55
{
"name": "clerk",
"description": "CouchDB library for Node and the browser",
"version": "0.8.3",
"author": {
"name": "Michael Phan-Ba",
"email": "[email protected]"
},
"homepage": "https://github.com/mikepb/clerk",
"keywords": [
"cloudant",
"couchdb",
"data",
"database",
"db",
"json",
"nosql",
"request"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/mikepb/clerk.git"
},
"main": "./index.js",
"browser": "./clerk.js",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"follow": "^0.12.1",
"superagent": "^1.2.0"
},
"devDependencies": {
"expect.js": "*",
"jsdoc": "^3.3.1",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.12",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.1.10",
"karma-sinon": "^1.0.4",
"karma-webpack": "^1.5.1",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"sinon": "^1.15.3",
"uglify-js": "^2.4.23",
"webpack": "^1.9.10"
},
"scripts": {
"test": "mocha --reporter dot",
"dist": "webpack clerk.js dist/clerk.js && webpack --optimize-minimize clerk.js dist/clerk.min.js",
"karma": "karma start --single-run",
"doc": "jsdoc -c jsdoc.json"
}
}