-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "node-ntcore",
"version": "0.1.7",
"description": "ntcore (Network Tables) for NodeJS",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhiquanyeo/node-ntcore.git"
},
"keywords": [
"network",
"tables"
],
"author": "ZQ Yeo",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/zhiquanyeo/node-ntcore/issues"
},
"homepage": "https://github.com/zhiquanyeo/node-ntcore#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/uuid": "^8.3.0",
"@types/winston": "^2.4.4",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"ieee754": "^1.2.1",
"strict-event-emitter-types": "^2.0.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"files": [
"dist/**/*"
]
}