-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
97 lines (97 loc) · 2.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "dawn-erc20",
"version": "1.0.0",
"description": "Dawn ERC-20 token and token swap contracts",
"directories": {
"test": "test"
},
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json"
],
"scripts": {
"generate": "truffle compile",
"test": "jest",
"erc777-test": "truffle test conformance/ERC777.js",
"jest": "jest && truffle test conformance/ERC777.js",
"tsc": "tsc --noEmit",
"lint": "eslint --ext .ts tests/ src/"
},
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"erc-20"
],
"author": "First Blood Technologies Inc. <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/firstblood/dawn-erc20.git"
},
"devDependencies": {
"@openzeppelin/contracts": "^2.5.0",
"@openzeppelin/contracts-ethereum-package": "^2.4.0",
"@openzeppelin/test-environment": "^0.1.3",
"@openzeppelin/test-helpers": "^0.5.4",
"@types/jest": "^25.1.3",
"@types/power-assert": "^1.5.3",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"babel-core": "^6.26.3",
"babel-jest": "^25.1.0",
"babel-preset-power-assert": "^3.0.0",
"bignumber.js": "^9.0.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"espower-typescript": "^9.0.2",
"ganache-core": "^2.10.2",
"jest": "^25.1.0",
"openzeppelin-solidity": "^2.5.0",
"power-assert": "^1.6.1",
"prettier": "^1.19.1",
"solc": "^0.5.16",
"truffle": "^5.1.17",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@openzeppelin/upgrades": "^2.7.2",
"@truffle/hdwallet-provider": "^1.0.33",
"axios": "^0.21.1",
"bn.js": "^5.1.1",
"envalid": "^6.0.1",
"eth-json-rpc-filters": "^4.2.2",
"eth-lib": "^0.1.29",
"truffle-hdwallet-provider": "^1.0.17",
"uuid": "^7.0.3",
"web3": "^1.2.6",
"web3-eth-contract": "^1.2.6",
"web3-providers-ws": "^1.2.6",
"web3-utils": "^1.2.6"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testMatch": [
"**/tests/*.ts"
],
"testEnvironment": "node",
"globals": {
"ts-jest": {
"babelConfig": {
"presets": [
"power-assert"
]
}
}
}
}
}