This repository has been archived by the owner on Mar 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
66 lines (66 loc) · 1.95 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
{
"name": "loopring-smart-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/Loopring/protocol.git"
},
"scripts": {
"transpile": "rm -rf ./transpiled; copyfiles ./build/**/* ./transpiled && tsc",
"pretest": "solium --dir contracts && tslint --project .",
"test": "npm run transpile && truffle test",
"docker": "docker-compose up --build --abort-on-container-exit; docker-compose logs -f test",
"testdocker": "npm run transpile && truffle test --network docker",
"compile": "rm -rf build/contracts && truffle compile",
"build": "rm -rf build/contracts && truffle compile",
"migrate": "npm run transpile && truffle migrate",
"deploy": "npm run migrate --network kovan",
"testrpc": "ganache-cli"
},
"license": "ISC",
"devDependencies": {
"@types/bignumber.js": "^4.0.3",
"@types/bluebird": "^3.5.20",
"@types/lodash": "^4.14.107",
"@types/node": "9.3.0",
"@types/request-promise-native": "^1.0.14",
"ajv": "^6.0.0",
"chai": "^2.2.1",
"copyfiles": "^1.2.0",
"dirty-chai": "^2.0.0",
"ganache-cli": "^6.1.0",
"solium": "^1.1.6",
"truffle": "4.1.5",
"tslint": "5.8.0",
"typescript": "^2.8.3",
"web3-typescript-typings": "^0.10.2",
"webpack": "^4.0.0"
},
"dependencies": {
"@types/bitwise-xor": "0.0.30",
"bignumber.js": "^4.1.0",
"bitwise-xor": "0.0.0",
"bluebird": "^3.5.1",
"bn.js": "^4.11.8",
"es6-iterator": "^2.0.3",
"es6-map": "^0.1.5",
"es6-promisify": "^5.0.0",
"escape-string-regexp": "^1.0.5",
"estraverse": "^4.2.0",
"esutils": "^2.0.2",
"ethereum-tx-decoder": "^1.0.2",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^5.1.5",
"event-emitter": "^0.3.5",
"events": "^1.1.1",
"js-sha3": "^0.7.0",
"lodash": "^4.17.5",
"npm": "^5.8.0",
"web3": "0.20.2"
}
}