-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "chainpoint-proof-json-schema",
"version": "2.1.1",
"description": "A JSON Schema validation library for Chainpoint v5 Proofs",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha",
"browser": "yarn bundle && open docs/index.html",
"bundle": "./node_modules/.bin/browserify --standalone chainpointProofSchema 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"
]
}
},
"repository": "https://github.com/chainpoint/chainpoint-proof-json-schema",
"author": "Jason Bukowski <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"is-my-json-valid": "^2.20.0"
},
"devDependencies": {
"browserify": "^16.2.3",
"mocha": "^5.2.0",
"should": "^13.2.3",
"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",
"prettier": "^1.17.0"
}
}