forked from OpenZeppelin/openzeppelin-test-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "openzeppelin-test-helpers",
"version": "0.3.2",
"description": "JavaScript testing helpers for Ethereum smart contract development.",
"main": "openzeppelin-test-helpers.js",
"files": [
"src",
"openzeppelin-test-helpers.js"
],
"scripts": {
"lint": "eslint .",
"test": "./scripts/test.sh --network ganache",
"test-integration": "./test-integration/run-all.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenZeppelin/openzeppelin-test-helpers.git"
},
"keywords": [
"ethereum",
"smart",
"contracts",
"test",
"solidity",
"zeppelin",
"openzeppelin"
],
"author": "OpenZeppelin Community <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenZeppelin/openzeppelin-test-helpers/issues"
},
"homepage": "https://github.com/OpenZeppelin/openzeppelin-test-helpers#readme",
"dependencies": {
"ansi-colors": "^3.2.3",
"chai-bn": "^0.1.1",
"ethjs-abi": "^0.2.1",
"semver": "^5.6.0",
"truffle-contract": "^4.0.8"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ganache-cli": "^6.2.5",
"truffle": "^5.0.1"
},
"peerDependencies": {
"chai": "^4.2.0"
}
}