-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "coa-error",
"version": "0.0.0",
"description": "Basic Error Library for coajs",
"keywords": [
"coajs",
"coa",
"coa-error",
"error",
"die"
],
"license": "MIT",
"author": "Aex",
"homepage": "https://github.com/coajs",
"repository": {
"type": "git",
"url": "https://github.com/coajs/coa-error.git"
},
"scripts": {
"dev": "tsc -w",
"test": "mocha dist/test",
"test:dev": "mocha dist/test --watch",
"lint": "eslint . ",
"format": "prettier -w .",
"build": "rm -rf dist* && tsc && cp package.json *.md dist/src",
"sync": "curl -X PUT 'https://npm.taobao.org/sync/coa-error?sync_upstream=true'"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"mocha": "^9.1.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
}
}