-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "encrypt-workers-kv",
"version": "0.0.3",
"description": "Encrypted put and get functions for Cloudflare Workers KV",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bradyjoslin/encrypt-workers-kv.git"
},
"keywords": [
"kv",
"cloudflare",
"workers",
"encryption"
],
"files": [
"dist/**/*"
],
"bugs": {
"url": "https://github.com/bradyjoslin/encrypt-workers-kv/issues"
},
"homepage": "https://github.com/bradyjoslin/encrypt-workers-kv#readme",
"scripts": {
"build:clean": "rimraf ./dist",
"build": "npm run build:clean && tsc --declaration",
"prepare": "npm run test:deploy && npm run test",
"test:deploy": "npm run build && cd test-worker/ && wrangler publish && cd ../",
"test": "ava test/test.js"
},
"author": "Brady Joslin [[email protected]]",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^2.0.0",
"ava": "^3.10.1",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
}
}