-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "@eyblockchain/zokrates.js",
"description": "This is a Node.js wrapper around ZoKrates.",
"license": "PUBLIC DOMAIN",
"version": "0.0.0-semantically-released",
"main": "index.js",
"repository": "https://github.com/EYBlockchain/zokrates.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",
"validate": "cod-scripts validate"
},
"devDependencies": {
"cod-scripts": "^3.2.0",
"jest": "^24.9.0",
"markdownlint-cli": "^0.18.0"
},
"dependencies": {},
"publishConfig": {
"registry": "http://registry.npmjs.org/",
"access": "public"
},
"eslintConfig": {
"extends": [
"./node_modules/cod-scripts/eslint.js"
]
},
"husky": {
"hooks": {
"pre-commit": "cod-scripts pre-commit",
"commit-msg": "cod-scripts commitlint -E HUSKY_GIT_PARAMS"
}
}
}