forked from rsksmart/erc677
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.51 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.51 KB
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
{
"name": "@rsksmart/erc677",
"version": "2.0.0",
"description": "ERC-677 Token Implementation",
"files": [
"/contracts",
"!/contracts/Migrations.sol",
"/ERC677Data.json",
"/types"
],
"scripts": {
"test": "npx truffle test",
"coverage": "npx truffle run coverage",
"lint": "npx prettier --list-different 'contracts/**/*.sol' 'test/**/*.test.js'",
"lint:fix": "npx prettier --write 'contracts/**/*.sol' 'test/**/*.test.js'",
"prepublish": "npx truffle compile && node ./datagen.js && npm run types-generation",
"types-generation": "typechain --target=web3-v1 '*Data.json' && typechain --target=web3-v2 '*Data.json' && typechain --target=truffle '*Data.json' && typechain --target=ethers '*Data.json'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rnsdomains/erc677.git"
},
"keywords": [
"rsk",
"rif"
],
"author": "ilanolkies",
"license": "MIT",
"bugs": {
"url": "https://github.com/rnsdomains/erc677/issues"
},
"homepage": "https://github.com/rnsdomains/erc677#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.0.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.4",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-beta.9",
"solidity-coverage": "^0.7.16",
"truffle": "^5.3.2",
"typechain": "^1.0.5",
"typechain-target-ethers": "^1.0.4",
"typechain-target-truffle": "^1.0.2",
"typechain-target-web3-v1": "^1.0.4",
"typechain-target-web3-v2": "^1.0.0"
}
}