This repository was archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
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
{
"name": "etherlime-monorepo",
"version": "1.2.0",
"description": "etherlime is an ethereum development and deployment framework based on ethers.js",
"scripts": {
"test": "nyc --check-coverage --lines 95 mocha 'test/**/*.js' --require mocha.opts.helper.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"link": "lerna bootstrap && cd packages/etherlime && yarn link"
},
"nyc": {
"exclude": [
"packages/etherlime/Solidity-IDE/*.js",
"test/**/**/*.js",
"tmpTest/**/*.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/LimeChain/etherlime"
},
"keywords": [],
"author": "http://www.limechain.tech",
"license": "ISC",
"devDependencies": {
"axios": "^0.21.1",
"chai": "4.1.2",
"fs-extra": "7.0.1",
"ethers": "^4.0.27",
"axios-mock-adapter": "^1.16.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.2",
"nyc": "^15.1.0",
"@openzeppelin/contracts": "^3.4.0",
"sinon": "^7.1.0",
"mocha": "5.2.0",
"solc": "0.7.0",
"tcp-port-used": "^1.0.1",
"web3-provider-engine": "^15.0.0",
"@openzeppelin/upgrades": "^2.8.0",
"lerna": "^3.20.2"
},
"browser": {
"fs": false,
"fs-extra": false,
"path": false,
"os": false
}
}