-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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": "chainpoint-parse",
"version": "5.0.1",
"description": "Tool for parsing Chainpoint proof anchors and calculating their expected values",
"main": "index.js",
"author": "Jason Bukowski <jason@tierion.com> (https://tierion.com)",
"license": "Apache-2.0",
"repository": "https://github.com/chainpoint/chainpoint-parse",
"scripts": {
"test": "yarn bundle && mocha test/*.js",
"bundle": "./node_modules/.bin/browserify --standalone chainpointParse index.js -o 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",
"parse",
"anchors"
],
"dependencies": {
"chainpoint-binary": "^5.1.1",
"chainpoint-proof-json-schema": "^2.1.1",
"js-sha3": "^0.8.0"
},
"devDependencies": {
"browserify": "^14.3.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^3.1.2",
"prettier": "^1.17.0",
"should": "^11.1.1"
}
}