-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 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
{
"name": "git-keyval",
"description": "SDK to transform your GitHub repository into a key-value database, JSON-bin or file-store",
"repository": "github:SomajitDey/git-keyval.js",
"homepage": "https://github.com/SomajitDey/git-keyval.js#-git-keyval",
"author": "Somajit Dey (https://github.com/SomajitDey)",
"license": "MIT",
"funding": "https://buymeacoffee.com/somajitdey",
"keywords": [
"keyval",
"key-value",
"database",
"db",
"kvdb",
"github",
"git",
"sdk",
"dictionary",
"json-bin",
"file-storage",
"cdn"
],
"type": "module",
"dependencies": {
"@octokit/graphql": "^8.2.2",
"@octokit/request": "^9.2.3",
"date-and-time": "^3.6.0",
"js-base64": "^3.7.7",
"lru-cache": "^11.1.0",
"mime-db-lite": "^2.1.0"
},
"devDependencies": {
"dotenv": "^16.5.0",
"esbuild": "^0.25.5",
"mocha": "^11.1.0",
"semistandard": "^17.0.0"
},
"scripts": {
"build": "./node_modules/.bin/esbuild src/index.js --bundle --format=esm --minify --tree-shaking=true --outfile=dist/index.min.js",
"test": "mocha --recursive --extension 'test.js' --timeout 120000 --parallel --check-leaks src/",
"init": "scripts/init.js",
"gc": "scripts/gc.js",
"lint": "semistandard --fix",
"bump": "scripts/set-version.sh",
"semver": "scripts/get-version.sh"
},
"version": "1.0.0",
"files": [
"README.md",
"LICENSE",
"src/",
"dist/"
],
"browser": "dist/index.min.js",
"exports": "src/index.js"
}