-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
32 lines (32 loc) · 1.01 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
{
"name": "ethereum-worker",
"version": "1.0.0",
"description": "Cloudflare worker for caching ethereum json-rpc responses",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development npm run build",
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
"test:clean": "rm -rf ./worker/src ./worker/test",
"test": "npm run test:clean && npm run transpile && mocha --require source-map-support/register --recursive worker/test",
"transpile": "tsc"
},
"author": "Shaleen Jain <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^1.0.7",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"prettier": "^1.19.1",
"service-worker-mock": "^2.0.5",
"source-map-loader": "^0.2.4",
"source-map-support": "^0.5.16",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}