remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/libs/remix-tests/package.json

82 lines
2.2 KiB

7 years ago
{
"name": "@remix-project/remix-tests",
8 months ago
"version": "0.2.43",
"description": "Tool to test Solidity smart contracts",
"main": "src/index.js",
"types": "./src/index.d.ts",
7 years ago
"contributors": [
{
"name": "Iuri Matias",
"email": "iuri@ethereum.org"
7 years ago
},
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
}
],
"bin": {
"remix-tests": "./bin/remix-tests"
},
7 years ago
"scripts": {
"build": "tsc",
2 years ago
"test": "./../../node_modules/.bin/mocha -r tsconfig-paths/register -r ts-node/register 'tests/**/*.spec.ts'"
7 years ago
},
"publishConfig": {
"access": "public"
},
7 years ago
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix-project.git"
7 years ago
},
7 years ago
"author": "Remix Team",
"license": "MIT",
7 years ago
"bugs": {
"url": "https://github.com/ethereum/remix-project/issues"
7 years ago
},
"homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-tests#readme",
7 years ago
"dependencies": {
2 years ago
"@erebos/bzz-node": "^0.13.0",
"@ethereumjs/block": "^4.2.0",
"@ethereumjs/common": "^3.1.1",
"@ethereumjs/tx": "^4.1.1",
"@ethereumjs/util": "^8.0.5",
"@ethereumjs/vm": "^6.4.1",
8 months ago
"@remix-project/remix-lib": "^0.5.50",
"@remix-project/remix-simulator": "^0.2.43",
"@remix-project/remix-solidity": "^0.5.29",
2 years ago
"@remix-project/remix-url-resolver": "^0.0.42",
"ansi-gray": "^0.1.1",
7 years ago
"async": "^2.6.0",
"axios": "1.6.0",
7 years ago
"change-case": "^3.0.1",
"color-support": "^1.1.3",
"colors": "1.4.0",
# This is a combination of 50 commits. # This is the 1st commit message: executors # This is the commit message #2: libs # This is the commit message #3: remixd # This is the commit message #4: add react app # This is the commit message #5: debugging # This is the commit message #6: debug + sol # This is the commit message #7: fixes # This is the commit message #8: tsconfig # This is the commit message #9: ast walker # This is the commit message #10: as walker # This is the commit message #11: remixd etc # This is the commit message #12: commander # This is the commit message #13: remove jest # This is the commit message #14: rm ui files # This is the commit message #15: rm reserved keywords # This is the commit message #16: testrunner # This is the commit message #17: compiler # This is the commit message #18: production build # This is the commit message #19: config # This is the commit message #20: config # This is the commit message #21: web types # This is the commit message #22: update react # This is the commit message #23: add vm # This is the commit message #24: add workers # This is the commit message #25: worker2 # This is the commit message #26: rm react app # This is the commit message #27: remixd # This is the commit message #28: worker fix # This is the commit message #29: fix detection # This is the commit message #30: revert react # This is the commit message #31: rename type # This is the commit message #32: loading handler # This is the commit message #33: remove import # This is the commit message #34: rename # This is the commit message #35: local plugin # This is the commit message #36: etherscan # This is the commit message #37: revert react # This is the commit message #38: port # This is the commit message #39: rm worker # This is the commit message #40: publicpath # This is the commit message #41: fix test # This is the commit message #42: 112 # This is the commit message #43: show version # This is the commit message #44: "axios": "1.1.2", # This is the commit message #45: config # This is the commit message #46: lint # This is the commit message #47: fix build # This is the commit message #48: lint # This is the commit message #49: error on purpose # This is the commit message #50: test error
2 years ago
"commander": "^9.4.1",
"deep-equal": "^1.0.1",
3 years ago
"ethers": "^5.4.2",
"ethjs-util": "^0.1.6",
"express-ws": "^4.0.0",
"merge": "^1.2.0",
5 years ago
"signale": "^1.4.0",
"solc": "^0.7.4",
"string-similarity": "^4.0.4",
"time-stamp": "^2.2.0",
"tslib": "^2.3.0",
"web3": "^4.1.1",
"winston": "^3.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
6 years ago
"@types/async": "^2.4.0",
"@types/color-support": "^1.1.0",
6 years ago
"@types/colors": "^1.2.1",
"@types/commander": "^2.12.2",
"@types/mocha": "^5.2.5",
"@types/node": "^18.16.1",
"mocha": "^5.1.0",
"ts-node": "^8.0.2",
"typescript": "^3.3.1"
},
"typings": "src/index.d.ts",
8 months ago
"gitHead": "d08019670b3095207b262dac71c55d8467a81f85"
1 year ago
}