-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "json-rpc2-implementer",
"version": "0.4.2",
"description": "JSON-RPC 2.0 server and client library, without any endpoints",
"keywords": [
"JSON",
"RPC",
"JSON-RPC2"
],
"homepage": "https://github.com/ktanakaj/json-rpc2-implementer",
"bugs": "https://github.com/ktanakaj/json-rpc2-implementer/issues",
"license": "MIT",
"author": {
"name": "Koichi Tanaka",
"email": "ktanakaj@users.noreply.github.com",
"url": "https://github.com/ktanakaj"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ktanakaj/json-rpc2-implementer.git"
},
"scripts": {
"build": "npm run clean-app && tsc --outDir ./",
"watch": "npm run clean-app && tsc --watch --outDir ./",
"test": "npm run build && mocha --require espower-typescript/guess \"./test/**/*.ts\"",
"doc": "npm run clean-doc && typedoc ./index.ts --out ./doc",
"clean": "npm run clean-app & npm run clean-doc",
"clean-app": "rm -f ./index.js ./index.js.map ./index.d.ts",
"clean-doc": "rm -rf ./doc",
"tslint": "tslint ./index.ts \"./test/**/*.ts\""
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/power-assert": "^1.5.0",
"espower-typescript": "^10.0.0",
"mocha": "^9.0.3",
"power-assert": "^1.5.0",
"tslint": "^6.1.3",
"typedoc": "^0.23.15",
"typescript": "^4.8.3"
}
}