-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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": "davenport",
"version": "2.8.2",
"description": "A CouchDB client for simplifying common tasks like get, list, create, update and delete. Comes complete with full TypeScript definitions.",
"main": "bin/index.js",
"typings": "bin/index.d.ts",
"files": [
"bin/index.*",
"bin/browser.js",
"index.ts"
],
"scripts": {
"build": "rimraf ./bin && tsc -p . && npm run webpack",
"webpack": "webpack bin/index.js bin/browser.js --output-library Davenport",
"pretest": "npm run build",
"pretest:raw": "npm run build",
"test": "alsatian -T ./bin/tests/index.js | tap-bark",
"test:raw": "alsatian -T ./bin/tests/index.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nozzlegear/davenport.git"
},
"keywords": [
"couchdb",
"client",
"api",
"davenport",
"futon",
"fauxton",
"gearworks",
"typescript",
"@types"
],
"author": "Joshua Harms <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nozzlegear/davenport/issues"
},
"homepage": "https://github.com/nozzlegear/davenport#readme",
"dependencies": {
"axios": "^0.15.3",
"logspect": "1.3.1"
},
"devDependencies": {
"@types/lodash": "^4.14.74",
"alsatian": "^1.3.1",
"lodash": "^4.17.4",
"rimraf": "^2.5.4",
"tap-bark": "^1.0.0",
"typescript": "^2.3.3",
"webpack": "^2.2.1"
}
}