-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.79 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
52
53
54
{
"name": "byte-serializer",
"displayName": "byte-serializer",
"version": "0.0.20",
"description": "Simple and high speed serializer for nodejs.",
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"prepublish": "tsc --outDir dist && npm run doc && git add . && git commit -m \"publish\" && git push",
"doc": "typedoc --module commonjs --target ES5 --out docs src --name \"byte-serializer\" --mode modules --ignoreCompilerErrors --hideGenerator --emitDecoratorMetadata --experimentalDecorators --suppressExcessPropertyErrors --suppressImplicitAnyIndexErrors --excludePrivate --readme readme.md "
},
"keywords": [
"byte",
"serialization",
"deserialization",
"buffer",
"typescript",
"decorators"
],
"directories": {
"example": "src/samples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RioloGiuseppe/byte-serializer.git"
},
"author": {
"name": "Giuseppe Riolo",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Giuseppe Riolo",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/RioloGiuseppe/byte-serializer/issues"
},
"homepage": "https://riologiuseppe.github.io/byte-serializer",
"readme": "https://github.com/RioloGiuseppe/byte-serializer#readme",
"devDependencies": {
"@types/chai": "4.1.2",
"@types/mocha": "5.0.0",
"@types/node": "^8.0.34",
"buffer-equals": "^1.0.4",
"chai": "4.1.2",
"mocha": "5.0.5",
"ts-node": "5.0.1",
"typescript": "2.8.1"
}
}