-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
{
"name": "chainpoint-binary",
"version": "5.1.1",
"description": "Tool for converting between Chainpoint JSON and binary formats",
"main": "index.js",
"repository": "https://github.com/chainpoint/chainpoint-binary",
"scripts": {
"test": "yarn bundle && mocha test/*.js",
"bundle": "./node_modules/.bin/browserify --standalone chainpointBinary index.js -o docs/bundle.js",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
}
},
"keywords": [
"Chainpoint",
"binary",
"json",
"compress",
"decompress",
"chp"
],
"author": "Jason Bukowski <jason@tierion.com> (https://tierion.com)",
"license": "Apache-2.0",
"dependencies": {
"chainpoint-proof-json-schema": "^2.1.1",
"msgpack-lite": "^0.1.26",
"pako": "^1.0.10"
},
"devDependencies": {
"browserify": "^14.3.0",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^3.1.2",
"prettier": "^1.14.3",
"should": "^11.1.1"
}
}