-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.91 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
55
56
57
58
59
{
"name": "javascript-serialization-benchmark",
"description": "Comparison of JavaScript serialization libraries",
"version": "1.0.0",
"license": "MIT",
"author": "Mattias E. O. Andersson",
"repository": "github:Adelost/javascript-serialization-benchmark",
"homepage": "https://github.com/Adelost/javascript-serialization-benchmark#readme",
"keywords": [],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rimraf dist dist-minified coverage tmp",
"start": "ts-node src/index.ts --expose-gc",
"start-ts": "ts-node src/index.ts --expose-gc",
"start-min": "node minified/index.js --expose-gc",
"build": "tsc",
"clean-build": "npm run clean && npm run build",
"watch": "tsc -w",
"minify": "webpack --display-modules",
"test": "jest",
"coverage": "jest --coverage",
"coverage-upload": "jest --coverage && coveralls < coverage/lcov.info",
"format": "prettier ./src --write",
"format-check": "prettier ./src --check",
"lint": "eslint ./src --ext ts && npm run format-check",
"lint-fix": "npm run format && eslint ./src --ext ts --fix",
"prepublishOnly": "npm run lint && npm run clean-build",
"postversion": "git push && git push --tags"
},
"dependencies": {
"avro-js": "^1.10.0",
"avsc": "^5.4.21",
"bser": "^2.1.1",
"bson": "^4.0.4",
"google-protobuf": "^4.0.0-rc.1",
"js-binary": "^1.2.0",
"pbf": "^3.2.1",
"protobufjs": "^6.10.1",
"protons": "^1.2.1"
},
"devDependencies": {
"@types/jest": "25.2.3",
"@typescript-eslint/eslint-plugin": "3.0.0",
"@typescript-eslint/parser": "3.0.0",
"coveralls": "3.1.0",
"eslint": "7.1.0",
"jest": "26.0.1",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"ts-jest": "26.0.0",
"ts-loader": "7.0.4",
"ts-node": "8.10.2",
"typescript": "3.9.3",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
}
}