-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "@noveo/dual-rpc-ws",
"version": "0.0.25",
"description": "Remote procedure call",
"types": "build/index.d.ts",
"main": "build/index.js",
"scripts": {
"docs": "typedoc src && git add ./docs",
"build": "tsc --build tsconfig.json && tsc --build tsconfig.client.json",
"prepare": "npm run-script build",
"prepublishOnly": "npm run build && npm run docs",
"test": "jest",
"coverage": "jest --coverage"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/react-native-uuid": "^1.4.0",
"@types/ws": "^7.2.2",
"buffer": "^5.5.0",
"kind-of": "^6.0.3",
"react-native-uuid": "^1.4.9",
"uuid": "^7.0.3",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/kind-of": "^6.0.0",
"@types/uuid": "^7.0.0",
"express": "^4.17.1",
"jest": "^25.5.4",
"prettier": "^1.19.1",
"ts-jest": "^25.5.1",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
},
"jest": {
"preset": "ts-jest",
"verbose": true,
"testMatch": [
"**/*.test.ts"
],
"coverageDirectory": "./coverage"
}
}