-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
executable file
·63 lines (63 loc) · 1.85 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
55
56
57
58
59
60
61
62
63
{
"name": "smart-contracts",
"version": "1.0.0",
"description": "This repository contains all open bazaar smart contracts ## Getting Started",
"main": "truffle.js",
"directories": {
"test": "test"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.26.0",
"bignumber.js": "^7.2.1",
"child_process": "^1.0.2",
"coveralls": "^3.0.2",
"dotenv": "^6.0.0",
"eth-lightwallet": "^3.0.1",
"ethereumjs-util": "^5.2.0",
"ethlint": "^1.2.4",
"fs": "0.0.1-security",
"ganache-cli": "^6.1.4",
"ganache-cli-coverage": "github:Agusx1211/ganache-cli#c462b3fc48fe9b16756f7799885c0741114d9ed3",
"husky": "^1.1.0",
"left-pad": "^1.3.0",
"lodash": "^4.17.11",
"openzeppelin-solidity": "2.1.2",
"path": "^0.12.7",
"ripemd160": "^2.0.2",
"secp256k1": "^3.5.0",
"solidity-coverage": "github:rotcivegaf/solidity-coverage#5875f5b7bc74d447f3312c9c0e9fc7814b482477",
"truffle": "5.0.12",
"web3": "^1.0.0-beta.34",
"websocket": "^1.0.28",
"yargs": "^11.0.0"
},
"scripts": {
"test": "scripts/test.sh",
"compile": "truffle compile",
"migrate": "truffle migrate",
"networks": "truffle networks",
"coverage": "scripts/coverage.sh",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix"
},
"husky": {
"hooks": {
"pre-commit": "truffle compile && npm run lint:sol:fix"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenBazaar/smart-contracts.git"
},
"keywords": [],
"author": "Sameep Singhania",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenBazaar/smart-contracts.git/issues"
},
"homepage": "https://github.com/OpenBazaar/smart-contracts.git#readme"
}