-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 983 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 983 Bytes
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": "ts-binary-serializer",
"version": "2.1.3",
"description": "Binary serializer for typescript",
"main": "dist/src/BinarySerializer.js",
"module": "dist/BinarySerializer.es.js",
"typings": "./dist/src/BinarySerializer.d.ts",
"scripts": {
"test": "mocha -r ts-node/register ./tests/**.test.ts",
"build": "tsc && rollup -c ./rollup.config.ts"
},
"author": "Chu Zheng",
"homepage": "https://github.com/zcyemi/ts-binary-serializer#readme",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"npm": "^6.4.1",
"rollup": "^1.21.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.2",
"rollup-plugin-uglify-es": "^0.0.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"files": [
"src/",
"dist/",
"tsconfig.json"
]
}