-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
{
"name": "mongodb-level",
"description": "Mongodb backed abstract-level database for Node.js",
"version": "0.0.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"keywords": [
"level",
"leveldb",
"leveldown",
"levelup",
"memory",
"mongodb"
],
"bugs": {
"url": "https://github.com/tinacms/mongodb-level/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tinacms/mongodb-level.git"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"CHANGELOG.md",
"README.md",
"build"
],
"scripts": {
"watch": "tinacms-scripts watch",
"build": "tinacms-scripts build",
"dev": "tinacms-scripts dev",
"test": "jest --coverage",
"docs": "npx typedoc",
"lint": "eslint \"./src/**/*{.ts,.tsx}\"",
"types": "pnpm tsc",
"publish": "pnpm publish -r --no-git-checks --access public",
"publish:beta": "pnpm publish -r --tag beta --no-git-checks --access public",
"publish:dev": "pnpm publish -r --tag dev --no-git-checks --access public",
"push-tags": "pnpm exec changeset tag && git pull && git push --follow-tags",
"version": "pnpm exec changeset version",
"version:snapshot": "pnpm exec changeset version --snapshot"
},
"dependencies": {
"module-error": "^1.0.2",
"mongodb": "^4.12.1",
"abstract-level": "^1.0.3"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@shelf/jest-mongodb": "^4.1.4",
"@tinacms/scripts": "^1.0.0",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@changesets/cli": "2.24.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.2.4",
"jest-environment-node": "^29.2.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"peerDependencies": {
"mongodb": "^4.12.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}