-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "wrappedNXM",
"version": "1.0.0",
"repository": "https://github.com/peppersec/wrappedNXM.git",
"contributors": [
"Roman Storm <[email protected]>",
"Alexey Pertsev <[email protected]>"
],
"license": "MIT",
"scripts": {
"compile": "npx truffle compile && npx typechain --target truffle './build/**/*.json'",
"coverage": "yarn compile && npx truffle run coverage",
"test": "yarn compile && ./test.sh",
"deploy": "truffle migrate --skipDryRun --network $NETWORK",
"verify": "truffle run verify --network $NETWORK"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.6",
"@ticket721/e712": "^0.4.1",
"bn.js": "^5.1.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.2.1",
"ganache-cli": "^6.10.0-beta.2",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54",
"solhint-plugin-prettier": "^0.0.4",
"solidity-coverage": "^0.7.7",
"truffle": "^5.1.29",
"truffle-flattener": "^1.4.4",
"truffle-hdwallet-provider": "^1.0.17",
"truffle-plugin-verify": "^0.3.11",
"truffle-typings": "^1.0.8",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-standard": "^9.0.0",
"typechain": "^2.0.0",
"typechain-target-truffle": "^1.0.2",
"typescript": "^3.9.5"
},
"dependencies": {
"@openzeppelin/contracts": "^2.5.1"
}
}