forked from sagi/workers-kv
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "@sagi.io/workers-kv",
"version": "0.0.4",
"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.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.2",
"coveralls": "^3.0.3",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"node-webcrypto-ossl": "^1.0.44",
"prettier": "^1.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sagi/workers-kv.git"
},
"keywords": ["cloudflare", "workers", "cloudflare workers", "kv", "api", "node"]
}