-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.36 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
{
"name": "drug-supply-chain-contracts",
"version": "0.0.1",
"description": "Smart contracts for a supply chain tracking drug packages",
"main": "index.js",
"scripts": {
"check": "npm test && npm run lint",
"lint": "solium -d contracts && eslint test/ migrations/",
"test": "truffle test",
"migrate:ropsten": "truffle migrate --network ropsten",
"migrate:ganache": "truffle migrate --network ganache",
"flatten": "mkdir -p build/flat && truffle-flattener contracts/$CONTRACT_NAME.sol > build/flat/$CONTRACT_NAME.flat.sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EspeoBlockchain/drug-supply-chain-contracts.git"
},
"author": "Espeo Blockchain",
"license": "MIT",
"bugs": {
"url": "https://github.com/EspeoBlockchain/drug-supply-chain-contracts/issues"
},
"homepage": "https://github.com/EspeoBlockchain/drug-supply-chain-contracts#readme",
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-bn": "0.1.1",
"dotenv": "7.0.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-chai-friendly": "0.4.1",
"eslint-plugin-import": "2.16.0",
"ethlint": "1.2.4",
"truffle": "5.0.33",
"truffle-flattener": "1.3.0",
"truffle-hdwallet-provider": "1.0.17"
},
"dependencies": {
"openzeppelin-solidity": "2.2.0"
}
}