-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·51 lines (51 loc) · 1.12 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
45
46
47
48
49
50
51
{
"name": "hprose",
"private": true,
"homepage": "https://github.com/hprose/hprose-typescript",
"description": "hprose for TypeScript",
"author": {
"name": "Ma Bingyao",
"email": "[email protected]",
"url": "http://hprose.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/hprose/hprose-typescript"
},
"bugs": {
"url": "https://github.com/hprose/hprose-typescript/issues",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.9",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"typescript": "^3.7.3",
"lerna": "^3.19.0"
},
"keywords": [
"hprose",
"rpc",
"serialize",
"microservices"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"release": "lerna publish",
"pretest": "lerna run compile",
"test": "jest",
"coverage": "jest --coverage",
"watch": "jest --watch"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"workspaces": [
"packages/@hprose/*"
]
}