-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "coa-http",
"version": "0.0.0",
"description": "A simple, fast and lightweight HTTP service framework",
"keywords": [
"coajs",
"coa",
"koa",
"serve",
"http"
],
"license": "MIT",
"author": "Aex",
"homepage": "https://github.com/coajs",
"repository": {
"type": "git",
"url": "https://github.com/coajs/coa-http.git"
},
"scripts": {
"tsc": "tsc -w",
"dev": "NODE_PATH=dist/example tsc-watch --onSuccess 'node dist/example/gateway'",
"build": "rm -rf dist && tsc && cp package.json *.md dist/lib",
"sync": "curl -X PUT 'https://npm.taobao.org/sync/coa-http?sync_upstream=true'",
"lint": "eslint .",
"prettier": "prettier -w ."
},
"dependencies": {
"coa-echo": "^1.2.0",
"coa-env": "^1.2.0",
"coa-error": "^1.5.2",
"coa-helper": "^1.2.1",
"coa-secure": "^1.2.0"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.3"
}
}