-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 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
45
{
"name": "@cogitoprotocol/cogito-token-contracts",
"version": "1.0.0",
"private": true,
"description": "Includes token contracts, migrations, tests",
"directories": {
"test": "test"
},
"scripts": {
"package-npm": "node scripts/package-npm.js",
"deploy": "scripts/truffle-migrate",
"compile": "node_modules/.bin/truffle compile",
"test": "rm -rf build && node_modules/.bin/truffle test",
"test-develop": "rm -rf build && node_modules/.bin/truffle test --network develop"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/cogitoprotocol/cogito-token-contracts.git"
},
"author": "Cogito",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/cogitoprotocol/cogito-token-contracts/issues"
},
"homepage": "https://gitlab.com/cogitoprotocol/cogito-token-contracts#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.8.1",
"@truffle/contract": "^4.2.23",
"@truffle/hdwallet-provider": "^1.1.0",
"solidity-coverage": "^0.7.20",
"truffle-plugin-verify": "^0.5.25"
},
"devDependencies": {
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"eth-gas-reporter": "^0.1.12",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^5.2.0",
"fs-extra": "^5.0.0",
"moment": "^2.22.2",
"webpack-cli": "^3.1.2"
}
}