This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
69 lines (69 loc) · 1.99 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
64
65
66
67
68
69
{
"name": "@origin/contracts",
"version": "0.8.6",
"description": "",
"engines": {
"node": "12.x"
},
"scripts": {
"build": "per-env",
"build:development": "truffle compile contracts",
"build:solc": "node -r @babel/register scripts/compile",
"build:production": "echo \"Warning: use release contracts for production\"",
"test": "node scripts/test.js",
"test:contracts": "mocha -r @babel/register -t 20000 --exit test-alt",
"test:watch": "mocha -r @babel/register -r @babel/polyfill -t 20000 -w --watch-extensions sol test-alt",
"test:contracts-coverage": "SOLIDITY_COVERAGE=1 solidity-coverage",
"format:solidity": "solium -d contracts/ --fix",
"format": "prettier-eslint --write 'test/**/*.js' 'test-alt/**/*.js' 'lib/**/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/OriginProtocol/origin"
},
"bugs": {
"url": "https://github.com/OriginProtocol/origin/issues"
},
"license": "MIT",
"dependencies": {
"@babel/core": "7.9.0",
"@babel/polyfill": "7.8.7",
"@babel/register": "7.9.0",
"ajv": "6.11.0",
"bs58": "4.0.1",
"ethereumjs-abi": "0.6.8",
"openzeppelin-solidity": "^1.10.0",
"per-env": "1.0.2",
"truffle": "^4.1.14",
"truffle-hdwallet-provider": "0.0.6",
"truffle-privatekey-provider": "^0.1.0",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/runtime": "7.9.2",
"bignumber.js": "9.0.0",
"chai": "4.2.0",
"chai-bignumber": "3.0.0",
"chalk": "3.0.0",
"cli-table": "0.3.1",
"ganache-core": "2.4.0",
"lodash-es": "4.17.15",
"mocha": "7.0.1",
"prettier-eslint-cli": "5.0.0",
"solc": "0.5.14",
"solidity-coverage": "0.7.1",
"solium": "1.2.5",
"web3-provider-engine": "15.0.4"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}