-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "kivik",
"version": "2.0.0-alpha.13",
"description": "An opinionated library and command-line utility for configuration CouchDB endpoints, databases, and design documents",
"keywords": [
"couchdb"
],
"repository": "https://github.com/crkn-rcdr/kivik",
"contributors": [
{
"name": "Sascha Adler",
"email": "[email protected]",
"url": "https://github.com/SaschaAdler"
},
{
"name": "Divya Krishnan",
"email": "[email protected]",
"url": "https://github.com/DivyaKrishnan26"
}
],
"license": "Unlicense",
"files": [
"dist/**"
],
"main": "dist/index.js",
"bin": {
"kivik": "dist/bin.js"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "rm -rf dist/** && tsc",
"kivik": "run-s build \"kivik:run -- {@}\" --",
"kivik:run": "cd example && node ../dist/bin.js",
"test": "ava -v",
"watch": "ava -v -w"
},
"dependencies": {
"@crkn-rcdr/nano": "^2.0.1",
"ansi-styles": "^5.2.0",
"axios": "^0.28.0",
"chokidar": "^3.5.2",
"find-up": "^5.0.0",
"fs-extra": "^9.1.0",
"p-event": "^4.2.0",
"p-retry": "^4.6.1",
"winston": "^3.3.3",
"yaml": "^1.10.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/dockerode": "^3.2.7",
"@types/fs-extra": "^9.0.12",
"@types/node": "^14.17.9",
"@types/yargs": "^16.0.4",
"ajv": "^7.2.4",
"ava": "^3.15.0",
"dockerode": "^3.3.0",
"get-port": "^5.1.1",
"nano": "^9.0.3",
"npm-run-all": "^4.1.5",
"ts-node": "^9.1.1",
"type-fest": "^1.4.0",
"typescript": "^4.3.5"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"ava": {
"files": [
"src/**/*.spec.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"ignoredByWatcher": [
"{dist,example,oldtests}/**"
]
}
}