-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 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
{
"name": "@eyblockchain/zokrates-zexe.js",
"description": "This is a Node.js wrapper around zokrates-zexe.",
"license": "CC0-1.0",
"version": "0.4.0",
"main": "index.js",
"repository": "https://github.com/EYBlockchain/zokrates-zexe.js.git",
"files": [
"lib"
],
"scripts": {
"build": "cod-scripts build",
"build:watch": "npm run build -- --watch",
"format": "cod-scripts format",
"lint": "cod-scripts lint",
"lint:md": "markdownlint -i node_modules -i dist .",
"test": "docker-compose run library jest --runInBand --verbose",
"validate": "cod-scripts validate"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"cod-scripts": "^3.2.0",
"jest": "^24.9.0",
"markdownlint-cli": "^0.18.0"
},
"dependencies": {
"jsonfile": "^6.1.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"eslintConfig": {
"extends": [
"./node_modules/cod-scripts/eslint.js"
],
"rules": {
"no-console": "off",
"no-restricted-syntax": "off",
"no-plusplus": "off"
},
"globals": {
"BigInt": true
}
},
"husky": {
"hooks": {
"pre-commit": "cod-scripts pre-commit",
"commit-msg": "cod-scripts commitlint -E HUSKY_GIT_PARAMS"
}
}
}