-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.32 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": "@manifoldxyz/token-owned-wallet-solidity",
"version": "0.0.1",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"files": [
"contracts/**/*.sol",
"build/contracts/*.json"
],
"scripts": {
"test": "npx truffle test",
"test:start-network": "npx ganache-cli -a 15",
"test:all": "npm test && npm run fmt && npm run lint",
"prettier": "prettier --write '{**/*,*}.{js,ts,tsx,md,mdx,yml,sol}'",
"fmt": "prettier -c '{**/*,*}.{js,ts,tsx,md,mdx,yml,sol}'",
"lint": "solhint -w 0 'contracts/**/*.sol'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manifoldxyz/token-owned-wallet-solidity.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/manifoldxyz/token-owned-wallet-solidity/issues"
},
"homepage": "https://github.com/manifoldxyz/token-owned-wallet-solidity#readme",
"devDependencies": {
"@openzeppelin/truffle-upgrades": "^1.9.1",
"eth-gas-reporter": "^0.2.23",
"ganache-cli": "^6.12.2",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"truffle": "^5.4.21",
"truffle-assertions": "^0.9.2"
},
"dependencies": {
"@manifoldxyz/creator-core-solidity": "^1.0.4",
"@openzeppelin/contracts": "^4.7.3"
}
}