forked from wl-buildingtools/nightfall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.36 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
56
57
58
59
60
61
{
"name": "nightfall",
"version": "1.0.0",
"description": "A solution to enable standard ERC-20 and ERC-721 tokens to be transacted on the Ethereum blockchain with complete privacy",
"main": "index.js",
"scripts": {
"test": "NODE_CONFIG_DIR=./integration-test/config mocha --require @babel/register -b ./integration-test/ --reporter mochawesome --timeout 1000000",
"test-compliance": "NODE_CONFIG_DIR=./integration-test/config COMPLIANCE=true mocha --require @babel/register -b ./integration-test/ --reporter mochawesome --timeout 1000000",
"test-mimc": "NODE_CONFIG_DIR=./integration-test/config MIMC=true mocha --require @babel/register -b ./integration-test/ --reporter mochawesome --timeout 1500000",
"setup": "docker-compose run zkp npm run setup --",
"setup-mimc": "docker-compose run zkp npm run setup-mimc --",
"setup-rc": "docker-compose run zkp npm run setup-rc --",
"setupAll": "docker-compose run zkp npm run setup-all",
"setupAll-mimc": "docker-compose run zkp npm run setup-all-mimc",
"setupAll-rc": "docker-compose run zkp npm run setup-all-rc",
"fix": "npm run format && npm run lint -- --fix",
"format": "prettier --write \"**/*.{json,css,scss,md,html}\"",
"lint": "eslint .",
"ui:lint": "cd ui/ && npm ci && npm run lint",
"lint:md": "markdownlint -i node_modules -i build ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/EYBlockchain/nightfall.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/EYBlockchain/nightfall/issues"
},
"homepage": "https://github.com/EYBlockchain/nightfall#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"acorn": "^8.0.4",
"chai": "^4.2.0",
"config": "^3.3.2",
"eslint": "^6.8.0",
"eslint-config-codfish": "3.0.0",
"general-number": "^1.0.1",
"husky": "^1.3.1",
"markdownlint-cli": "^0.16.0",
"minimist": ">=0.2.1",
"mocha": "^6.1.4",
"mochawesome": "^4.1.0",
"prettier": "1.18.2",
"superagent": "^5.3.1",
"superagent-prefix": "0.0.2",
"zkp-utils": "^1.0.8"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}