-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "espresso-tests",
"version": "1.0.4",
"description": "Speedy, parallelized, hot-reloading solidity test framework",
"author": "Hill Street Labs",
"license": "MIT",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hillstreetlabs/espresso"
},
"scripts": {
"build": "babel src -d dist",
"dev": "npx babel src -d dist --watch",
"prepare": "npm run build"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"chai": "^4.1.2",
"colors": "^1.1.2",
"commander": "^2.14.1",
"ganache-core": "^2.1.0",
"mobx": "^3.5.1",
"mocha": "^5.0.1",
"mocha-better-spec-reporter": "^3.1.0",
"mocha-parallel-tests": "^1.2.10",
"portfinder": "^1.0.13",
"truffle": "^4.1.9",
"truffle-artifactor": "^3.0.5",
"truffle-compile": "^3.0.11",
"truffle-config": "^1.0.4",
"truffle-migrate": "^2.0.6",
"truffle-resolver": "^4.0.3",
"truffle-workflow-compile": "^1.0.4",
"web3": "0.20.6"
},
"bin": {
"espresso": "./dist/cli.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"npx": "^9.7.1"
}
}