-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "itty-durable",
"description": "Simplified interface for Cloudflare Durable Objects",
"version": "2.4.1",
"main": "./index.js",
"keywords": [
"cloudflare",
"workers",
"durable objects"
],
"scripts": {
"lint": "npx eslint src",
"test": "vitest run --coverage --reporter verbose",
"verify": "echo 'verifying module...' && yarn build",
"dev": "yarn lint && vitest src",
"coverage": "vitest run --coverage",
"prerelease": "yarn verify",
"prebuild": "rimraf dist && yarn test",
"build": "rm -fr dist/* && tsc -p tsconfig.json",
"release": "release --tag --patch --push --src=dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwhitley/itty-durable.git"
},
"author": "Kevin R. Whitley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwhitley/itty-durable/issues",
"email": "[email protected]"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@types/jest": "^29.5.2",
"@vitest/coverage-c8": "^0.31.4",
"coveralls": "^3.1.1",
"eslint": "^8.41.0",
"eslint-plugin-jest": "^27.2.1",
"isomorphic-fetch": "^3.0.0",
"jsdom": "^22.1.0",
"rimraf": "^5.0.1",
"typescript": "^5.0.4",
"vitest": "^0.31.4",
"yarn-release": "^1.10.5"
},
"peerDependencies": {
"itty-router": "^5.0.4"
}
}