-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "solidity-starter",
"version": "1.0.0",
"description": "Starter codes for solidity smart contracts project with truffle, ethlint and solidity-prettier",
"main": "",
"scripts": {
"test": "truffle test --compile-all",
"postinstall": "npm run compile",
"compile": "truffle compile --all",
"lint": "solium -d contracts",
"prettier": "prettier --write contracts/*.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circle-free/blockchain-mq-smart-contracts.git"
},
"keywords": [
"solidity",
"ethereum",
"smart contract",
"message queue",
"blockchain"
],
"author": "Circle-Free",
"license": "MIT",
"bugs": {
"url": "https://github.com/circle-free/blockchain-mq-smart-contracts/issues"
},
"homepage": "https://github.com/circle-free/blockchain-mq-smart-contracts#readme",
"dependencies": {
"truffle": "^5.0.39"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-shallow-deep-equal": "^1.4.6",
"ethlint": "^1.2.5",
"prettier": "^1.18.2",
"prettier-plugin-solidity": "^1.0.0-alpha.34",
"web3": "^1.2.1"
}
}