-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "compactr",
"version": "2.4.2",
"description": "Schema based serialization made easy",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha tests/index.js --exit",
"bench": "node benchmarks/array.js && node benchmarks/boolean.js && node benchmarks/double.js && node benchmarks/integer.js && node benchmarks/object.js && node benchmarks/string.js"
},
"funding": {
"type": "Github",
"url": "https://github.com/sponsors/fed135"
},
"repository": {
"type": "git",
"url": "git+https://github.com/compactr/compactr-js.git"
},
"keywords": [
"compactr",
"compact",
"encode",
"encoding",
"serializing",
"buffer",
"byte",
"decode",
"decoding",
"compress",
"serialize"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"author": "frederic charette <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/compactr/compactr.js/issues"
},
"homepage": "https://github.com/compactr/compactr.js#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"eslint": "^6.7.1",
"husky": "^3.1.0",
"mocha": "^6.2.0",
"protobufjs": "^6.8.8"
}
}