forked from kwhitley/itty-durable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.5 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
50
{
"name": "itty-durable",
"description": "Simplified interface for Cloudflare Durable Objects",
"version": "1.6.0",
"main": "./index.js",
"keywords": [
"cloudflare",
"workers",
"durable objects"
],
"scripts": {
"lint": "npx eslint src",
"test:dist": "jest --verbose --coverage dist",
"test": "yarn lint && jest --verbose --coverage src",
"verify": "echo 'verifying module...' && yarn build && yarn test",
"dev": "yarn lint && jest --verbose --watch src",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"prerelease": "yarn verify",
"prebuild": "rimraf dist",
"build-old": "terser-folder src -eo dist --pattern '**/*.js,!**/*spec.js' -x .js",
"build": "rm -fr dist/* && tsc -p tsconfig.json",
"release": "release --tag --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": {
"@types/jest": "^28.1.3",
"coveralls": "^3.1.1",
"eslint": "^8.18.0",
"eslint-plugin-jest": "^26.5.3",
"isomorphic-fetch": "^3.0.0",
"jest": "^28.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4",
"yarn-release": "^1.10.3"
},
"dependencies": {
"itty-router": "^2.6.1",
"itty-router-extras": "^0.4.2"
}
}