-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 905 Bytes
/
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
{
"name": "tio-node",
"version": "0.1.0",
"description": "Twinleaf I/O protocol for Node.js",
"author": "Stefan van Herwijnen",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/types",
"scripts": {
"build": "yarn build:src && yarn build:docs",
"build:src": "tsc",
"build:docs": "typedoc --out docs --readme README.md src/index.ts",
"test": "jest"
},
"dependencies": {
"binary-parser-encoder": "^1.5.2",
"utf8": "^3.0.0"
},
"devDependencies": {
"@microsoft/tsdoc": "^0.12.21",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"@types/utf8": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"axios": "^0.20.0",
"eslint": "^7.8.1",
"jest": "^26.4.2",
"log-update": "^4.0.0",
"tslib": "^2.0.1",
"typedoc": "^0.19.1",
"typescript": "^4.0.2"
}
}