forked from OpenZeppelin/damn-vulnerable-defi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
22 lines (22 loc) · 1.24 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
{
"scripts": {
"test": "npm run compile && npx mocha --timeout 5000 --exit --recursive test",
"unstoppable": "npm run compile && npx mocha --timeout 5000 --exit test/unstoppable/unstoppable.challenge.js",
"truster": "npm run compile && npx mocha --timeout 5000 --exit test/truster/truster.challenge.js",
"naive-receiver": "npm run compile && npx mocha --timeout 5000 --exit test/naive-receiver/naive-receiver.challenge.js",
"side-entrance": "npm run compile && npx mocha --timeout 5000 --exit test/side-entrance/side-entrance.challenge.js",
"the-rewarder": "npm run compile && npx mocha --timeout 5000 --exit test/the-rewarder/the-rewarder.challenge.js",
"selfie": "npm run compile && npx mocha --timeout 5000 --exit test/selfie/selfie.challenge.js",
"compromised": "npm run compile && npx mocha --timeout 5000 --exit test/compromised/compromised.challenge.js",
"puppet": "npm run compile && npx mocha --timeout 5000 --exit test/puppet/puppet.challenge.js",
"compile": "npx buidler compile"
},
"license": "MIT",
"dependencies": {
"@nomiclabs/buidler": "1.4.7",
"@openzeppelin/contracts": "3.0.0",
"@openzeppelin/test-environment": "0.1.3",
"@openzeppelin/test-helpers": "0.5.5",
"mocha": "7.1.1"
}
}