mirror of
https://github.com/ImSingee/hammal.git
synced 2024-11-22 02:19:38 +08:00
23 lines
718 B
JSON
23 lines
718 B
JSON
{
|
|
"name": "pname",
|
|
"version": "1.0.0",
|
|
"description": "Cloudflare worker TypeScript template",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development npm run build",
|
|
"build": "webpack",
|
|
"format": "prettier --write '**/*.{ts,js,css,json,md}'",
|
|
"test:clean": "rimraf ./transpiled/src ./transpiled/test",
|
|
"test": "npm run test:clean && npm run transpile && mocha --require source-map-support/register --recursive transpiled/test",
|
|
"transpile": "tsc --project ./test"
|
|
},
|
|
"author": "author",
|
|
"license": "MIT OR Apache-2.0",
|
|
"devDependencies": {
|
|
"@cloudflare/workers-types": "^2.0.0",
|
|
"prettier": "^2.0.5",
|
|
"typescript": "^3.9.5",
|
|
"wrangler": "^3.60.0"
|
|
}
|
|
}
|