This repository was archived by the owner on Mar 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.37 KB
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
{
"name": "couch-init2",
"version": "6.0.4",
"type": "module",
"description": "Opiniated CouchDB databases initializer",
"main": "lib/main.js",
"scripts": {
"check-types": "tsc -p ./jsconfig.json",
"lint": "eslint -c ./.eslintrc lib test",
"lint-fix": "eslint --fix -c ./.eslintrc lib test",
"test": "mocha",
"prepublishOnly": "npm test",
"postpublish": "git push --tags"
},
"files": [
"lib"
],
"author": "maxlath",
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.0",
"tiny-chalk": "^3.0.2"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.13",
"config": "^3.3.8",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^9.1.3",
"should": "^13.2.3",
"typescript": "^5.0.4"
},
"engines": {
"node": ">= 8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxlath/couch-init2.git"
},
"keywords": [
"couchdb",
"init",
"setup",
"design docs",
"promises"
],
"standard": {
"globals": [
"it",
"describe",
"beforeEach"
]
},
"bugs": {
"url": "https://github.com/maxlath/couch-init2/issues"
},
"homepage": "https://github.com/maxlath/couch-init2#readme"
}