-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "sol-nft-wrap",
"version": "0.1.0",
"description": "sol-nft-wrap",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bloq/sol-nft-wrap.git "
},
"license": "MIT",
"scripts": {
"solhint": "solhint './contracts/**/*.sol'",
"solhint:fix": "prettier --write 'contracts/**/*.sol'",
"truffle": "truffle",
"ganache-cli": "ganache-cli",
"lint": "eslint ./test/*",
"lint:fix": "eslint --fix ./test --ext .js",
"test": "truffle test"
},
"dependencies": {
"@openzeppelin/test-helpers": "^0.5.10",
"bip39": "^3.0.3",
"config": "^3.3.3",
"hdkey": "^2.0.1"
},
"devDependencies": {
"@openzeppelin/contracts": "^3.4.0",
"@truffle/hdwallet-provider": "^1.2.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"ganache-cli": "^6.12.2",
"mocha": "^8.3.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "0.0.5",
"truffle": "^5.1.65"
},
"pre-commit": [
"solhint",
"lint"
]
}