-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "@sagi.io/workers-kv",
"version": "0.0.14",
"description": "Cloudflare Workers KV API for Node.js",
"author": "Sagi Kedmi <git@sagi.io> (https://sagi.io)",
"homepage": "https://sagi.io",
"main": "index.js",
"license": "MIT",
"private": false,
"scripts": {
"build": "babel --ignore '**/*.test.js' --ignore testdata src -d lib --verbose",
"prepublish": "yarn build",
"prettier:ci": "prettier --list-different ./src/*.js",
"coverage": "yarn build && yarn jest --coverage",
"lint": "yarn eslint ./src",
"test": "yarn build && yarn jest"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.1",
"debug": "^4.3.6",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.2",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sagi/workers-kv.git"
},
"keywords": [
"cloudflare",
"workers",
"cloudflare workers",
"kv",
"api",
"node"
],
"types": "types.d.ts"
}