-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "tobin",
"version": "0.1.17",
"description": "Library for binary conversion",
"homepage": "https://github.com/jkulvich/tobin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jkulvich/tobin"
},
"bugs": {
"url": "https://github.com/jkulvich/tobin/issues"
},
"keywords": [
"binary",
"serialization",
"casting",
"marshaling",
"types",
"typescript",
"int32",
"bytes"
],
"author": "Kulagin Yuri <[email protected]> (https://twitter.com/jkulvich)",
"scripts": {
"build": "tsc -m amd",
"test": "ts-mocha -r tsconfig-paths/register -p ./tsconfig.json src/**/*.spec.ts",
"doc": "rm -rf ./docs && yarn typedoc --out docs/ -m amd --target ES6"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.11",
"assert": "^2.0.0",
"mocha": "^7.2.0",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
}
}