-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 970 Bytes
/
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
{
"name": "coa-echo",
"version": "0.0.0",
"description": "Lightweight console color logger for node.js",
"keywords": [
"coajs",
"coa",
"echo",
"console"
],
"license": "MIT",
"author": "Aex",
"homepage": "https://github.com/coajs/coa-echo",
"repository": {
"type": "git",
"url": "https://github.com/coajs/coa-echo.git"
},
"scripts": {
"dev": "tsc -w",
"test": "node dist/test",
"lint": "eslint .",
"prettier": "prettier -w .",
"build": "rm -rf dist && tsc && cp package.json dist",
"sync": "curl -X PUT 'https://npm.taobao.org/sync/coa-echo?sync_upstream=true'"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"code-oss-dev": "^0.0.1-security",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
}
}