-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
83 lines (83 loc) · 2.69 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "augur-lite",
"version": "1.0.1",
"description": "Core AugurLite contracts and deployment process",
"author": "Veil <[email protected]>",
"repository": "http://github.com/veilco/augur-lite",
"main": "output/index.js",
"types": "output/index.d.ts",
"module": "output/index.js",
"license": "GPL-3.0",
"directories": {
"src": "source",
"test": "test"
},
"files": [
"output/contracts/*",
"output/index.js",
"output/index.d.ts"
],
"scripts": {
"lint": "npx solium --dir source --reporter=gcc",
"build:source": "npx tsc",
"build:contracts": "npm run build:flattener && . venv/bin/activate && node output/deployment/compileContracts.js",
"build:interfaces": "node output/tools/generateContractInterfaces.js",
"build:flattener": "source/tools/installSolidityFlattener",
"build": "npm run build:source && npm run lint && npm run build:contracts && npm run build:interfaces",
"preversion": "npm run build",
"version": "git add source/libraries/ContractInterfaces.ts",
"release": "npm version prerelease && npm publish",
"test:unit": "pytest -vv",
"test:unit:all": "pytest tests -vv",
"test:integration": "npx mocha output/tests-integration/**/*.js --no-timeouts --require source-map-support/register",
"deploy:net": "bash ./source/deployment/run.sh direct",
"deploy:rinkeby": "npm run deploy:net -- rinkeby",
"deploy:ropsten": "npm run deploy:net -- ropsten",
"deploy:kovan": "npm run deploy:net -- kovan",
"deploy:mainnet": "npm run deploy:net -- mainnet"
},
"dependencies": {
"@types/get-port": "3.2.0",
"@types/mkdirp": "0.5.1",
"@types/node": "9.6.7",
"@types/yargs": "11.0.0",
"async-file": "2.0.2",
"async-mkdirp": "1.2.0",
"async-parallel": "1.2.3",
"binascii": "0.0.1",
"bn.js": "4.11.8",
"copy-dir": "0.3.0",
"crypto-promise": "2.0.0",
"dotenv": "^8.0.0",
"ethereumjs-testrpc": "6.0.3",
"ethjs-abi": "0.2.1",
"ethjs-account": "0.1.4",
"ethjs-contract": "0.1.9",
"ethjs-provider-http": "0.1.6",
"ethjs-query": "0.3.1",
"ethjs-rpc": "0.1.8",
"ethjs-signer": "0.1.1",
"fs-readfile-promise": "3.0.0",
"get-port": "3.2.0",
"path": "0.12.7",
"recursive-readdir": "2.2.1",
"replace": "1.0.0",
"rimraf": "2.6.2",
"solidity-coverage": "0.5.4",
"yargs": "11.0.0"
},
"devDependencies": {
"@types/chai": "4.0.4",
"@types/chai-as-promised": "7.1.0",
"@types/mocha": "5.1.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"cross-env": "5.1.3",
"mocha": "5.1.1",
"solc": "0.4.25",
"solium": "1.1.7",
"source-map-support": "0.5.0",
"ts-node": "3.3.0",
"typescript": "2.6.1"
}
}