forked from EYBlockchain/nightfall_3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "nightfall_3",
"version": "0.0.1",
"description": "Optimistic Nightfall",
"main": "./nightfall-client/src/index.mjs",
"scripts": {
"test": "mocha --timeout 0 --bail test/http.mjs test/neg-http.mjs",
"test-gas": "mocha --timeout 0 --bail test/tx-gas.mjs",
"test-chain-reorg": "mocha --timeout 0 --bail test/chain-reorg.mjs",
"lint": "eslint . --ext js,mjs && find-unused-exports",
"prepare": "husky install",
"doc:build:sdk": "jsdoc -c jsdoc.json cli/lib/nf3.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EYBlockchain/optimistic-nightfall.git"
},
"author": "duncan.westland@uk.ey.com",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/EYBlockchain/optimistic-nightfall/issues"
},
"homepage": "https://github.com/EYBlockchain/optimistic-nightfall#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"axios": "^0.21.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"chai-things": "^0.2.0",
"common-files": "file:./common-files",
"config": "^3.3.1",
"eslint": "^7.25.0",
"eslint-config-codfish": "^10.0.0",
"find-unused-exports": "^2.0.0",
"general-number": "^1.0.1",
"husky": "^6.0.0",
"jsdoc": "^3.6.7",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"queue": "^6.0.2",
"web3": "^1.4.0",
"ws": "^7.5.0"
},
"dependencies": {
"docker-compose": "^0.23.13"
}
}