-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
{
"name": "@remix-project/remix-tests",
"version": "0.1.34",
"description": "Tool to test Solidity smart contracts",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"contributors": [
{
"name": "Iuri Matias",
"email": "[email protected]"
},
{
"name": "Yann Levreau",
"email": "[email protected]"
}
],
"bin": {
"remix-tests": "./bin/remix-tests"
},
"scripts": {
"build": "tsc",
"test": "jest",
"copyfiles": "cp ./package.json ./dist && cp -R ./bin ./dist",
"setup": "npm run build && npm run copyfiles"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix-project.git"
},
"author": "Remix Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/remix-project/issues"
},
"homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-tests#readme",
"dependencies": {
"async": "^2.6.0",
"change-case": "^3.0.1",
"colors": "^1.1.2",
"commander": "^2.13.0",
"@remix-project/remix-lib": "0.4.30",
"@remix-project/remix-simulator": "0.1.9-beta.7",
"@remix-project/remix-solidity": "0.3.31",
"signale": "^1.4.0",
"web3": "^1.2.4",
"winston": "^3.0.0"
},
"peerDependencies": {
"yo-yoify": "^4.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@types/async": "^2.4.0",
"@types/color-support": "^1.1.0",
"@types/colors": "^1.2.1",
"@types/commander": "^2.12.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.21",
"@types/web3": "^1.0.18",
"jest": "^26.4.2",
"mocha": "^5.1.0",
"ts-jest": "^26.3.0",
"ts-node": "^8.0.2",
"tslib": "^2.0.1",
"typescript": "^3.3.1"
}
}