forked from livepeer/protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.8 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
{
"name": "protocol",
"version": "1.0.0",
"description": "Initial LivepeerProtocol implementation. See the [Dev Roadmap](https://github.com/livepeer/protocol/blob/master/DEVROADMAP.md) for the plan to get from here to live protocol.",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "npm run eslint; npm run solium",
"eslint": "./node_modules/.bin/eslint util/** test/**",
"solium": "./node_modules/.bin/solium --dir ./contracts",
"ganache": "./node_modules/.bin/ganache-cli -l 0x663BE0",
"clean": "rm -rf build/contracts",
"compile": "truffle compile --all",
"test:coverage": "SOLIDITY_COVERAGE=true bash scripts/run_ganache.sh && ./node_modules/.bin/solidity-coverage || true",
"test:coverage:coveralls": "npm run test:coverage && cat coverage/lcov.info | ./node_modules/.bin/coveralls",
"test:unit": "bash scripts/run_ganache.sh && truffle test test/unit/*",
"test:integration": "bash scripts/run_ganache.sh && truffle test test/integration/*",
"validateDeploymentAndGenesis": "READ_ONLY=true truffle exec scripts/validateDeploymentAndGenesis.js",
"migrate": "truffle migrate",
"docker:build": "docker build --cache-from livepeer/protocol:latest --tag livepeer/protocol:latest -f Dockerfile .",
"docker:push": "docker push livepeer/protocol:latest",
"docker:run:lint": "docker run --rm --entrypoint=npm livepeer/protocol:latest run lint",
"docker:run:test:coverage": "docker run -e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN --rm --entrypoint=npm livepeer/protocol:latest run test:coverage:coveralls",
"docker:run:test:unit": "docker run --rm --entrypoint=npm livepeer/protocol:latest run test:unit",
"docker:run:test:integration": "docker run --rm --entrypoint=npm livepeer/protocol:latest run test:integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/livepeer/protocol.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/livepeer/protocol/issues"
},
"homepage": "https://github.com/livepeer/protocol#readme",
"devDependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"bignumber.js": "^4.0.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.3.0",
"eslint-config-google": "^0.9.1",
"ethereumjs-abi": "github:ethereumjs/ethereumjs-abi#09c3c48fd3bed143df7fa8f36f6f164205e23796",
"ethereumjs-util": "^5.1.2",
"ganache-cli": "^6.1.0-beta.0",
"mkdirp": "^0.5.1",
"mocha-lcov-reporter": "^1.3.0",
"solidity-coverage": "^0.4.9",
"solium": "^1.1.2",
"truffle": "^4.0.4",
"truffle-keystore-provider": "^1.0.2",
"zeppelin-solidity": "1.5.0"
}
}