-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
61 lines (61 loc) · 2.61 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
{
"name": "Bskt",
"version": "1.0.1",
"description": "Bskt is a generic smart contract that creates decentralized token portfolios. Bskt facilitates the bundling and unbundling of a collection of ERC20 tokens in exchange for a new ERC20 token.",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"bootstrap": "rm -rf node_modules && npm cache clean --force && if [ ! -f \"config/secrets.json\" ]; then mkdir -p config && cp config-examples/secrets.example.json config/secrets.json; fi && if [ ! -f \"config/deploy-config.js\" ]; then mkdir -p config && cp config-examples/deploy-config.example.js config/deploy-config.js; fi && npm i",
"lint": "solium --dir ./contracts",
"test:prep": "npm run lint && npm run ganache-cli:dev",
"test:e2eprep": "npm run update-module && node scripts/compile-contract.js",
"test:js": "npm run test:prep && truffle test --network rpc ./test/BsktToken.test.js",
"test:sol": "npm run test:prep && truffle test --network rpc ./test/TestBsktToken.sol",
"test:e2e": "npm run test:e2eprep && npm run test:prep && TEST_ENV=e2e truffle test --network rpc ./test/E2E.test.js",
"test:js:gas": "GAS_REPORTER=true npm run test:js",
"test": "npm run test:prep && npm run test:js && npm run test:sol",
"ganache-cli:dev": "scripts/ganache-cli.sh",
"ganache-cli:coverage": "SOLIDITY_COVERAGE=true scripts/ganache-cli.sh",
"cover": "npm run ganache-cli:coverage && ./node_modules/.bin/solidity-coverage",
"update-module": "git submodule update --init && git submodule foreach git pull origin master"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"bluebird": "^3.5.1",
"checksum": "^0.1.1",
"eth-gas-reporter": "^0.1.1",
"ether-pudding": "^3.2.0",
"ganache-cli": "^6.0.3",
"glob": "^7.1.2",
"jsonfile": "^4.0.0",
"mkdirp": "^0.5.1",
"npm-install-version": "^6.0.2",
"solc": "^0.4.19",
"solidity-coverage": "^0.4.9",
"solium": "^1.1.3",
"truffle": "=4.1.6",
"truffle-artifactor": "^3.0.3",
"truffle-config": "^1.0.4",
"truffle-contract": "^3.0.3",
"truffle-hdwallet-provider": "0.0.3",
"web3": "0.20.4",
"yarn": "^1.5.1"
},
"dependencies": {
"colors": "^1.1.2",
"npm": "^5.7.1",
"zeppelin-solidity": "git@github.com:OpenZeppelin/zeppelin-solidity.git#a7e91856f3e275668b4a4c55cbd14864aa61b100"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptofinlabs/bskt.git"
},
"bugs": {
"url": "https://github.com/cryptofinlabs/bskt/issues"
},
"homepage": "https://github.com/cryptofinlabs/bskt#readme"
}