-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.59 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.59 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "zoom",
"version": "0.1.0",
"description": "Zoom Dev",
"main": "dist/lib/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsc -p . && npm run build:dec && npm run build:js && truffle compile",
"build:js": "gulp build",
"build:dec": "scripts/declarations.sh",
"test": "tsc -p . && scripts/run_tests.sh local",
"test:local": "npm run test",
"test:reuse": "tsc -p . && scripts/run_tests.sh local use-existing",
"test:local:reuse": "npm run test:reuse",
"test:infura": "tsc -p . && scripts/run_tests.sh infura",
"test:nowlive.geth": "tsc -p . && scripts/run_tests.sh nowlive.geth",
"test:nowlive.parity": "tsc -p . && scripts/run_tests.sh nowlive.parity"
},
"files": [
"index.js",
"build/",
"contracts/",
"scripts/",
"test/",
"dist/*"
],
"author": "micky@mcro.tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MCROEngineering/zoom"
},
"keywords": [
"zoomdev"
],
"bugs": {
"url": "https://github.com/MCROEngineering/zoom/issues"
},
"homepage": "https://github.com/MCROEngineering/zoom#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"dateformat": "^3.0.3",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.2.0",
"ganache-cli": "^6.1.8",
"gulp": "^4.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify-es": "^1.0.4",
"gulp-util": "^3.0.8",
"solidity-inspector": "^0.2.3",
"solidity-sha3": "^0.4.1",
"solium": "^0.5.5",
"truffle": "^5.0.0-beta.1",
"truffle-config": "^1.0.2",
"truffle-expect": "0.0.3",
"truffle-hdwallet-provider": "^0.0.3",
"ts-mocha": "^1.3.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"web3": "^1.0.0-beta.36"
},
"dependencies": {
"@types/chai": "^4.1.6",
"@types/ethereumjs-tx": "^1.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.3",
"bignumber.js": "^8.0.1",
"chai": "^4.2.0",
"cli-table": "^0.3.1",
"cross-env": "^5.2.0",
"crypto-js": "^3.1.9-1",
"mocha": "^4.1.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha-loader": "^1.1.3",
"mocha-webpack": "^1.0.1",
"solc": "^0.4.25",
"source-map-support": "^0.5.9",
"tar": "^4.4.1",
"typescript": "^2.8.3",
"web3-utils": "^1.0.0-beta.23"
},
"engines": {
"node": ">=6.0.0"
},
"standard": {
"env": "mocha",
"globals": [
"describe",
"it"
]
}
}