publish remix libs

pull/5370/head
aniket-engg 4 years ago committed by Aniket
parent 62d17a2b11
commit 718609e0aa
  1. 17
      libs/remix-analyzer/package.json
  2. 15
      libs/remix-astwalker/package.json
  3. 16
      libs/remix-debug/package.json
  4. 10
      libs/remix-lib/package.json
  5. 14
      libs/remix-simulator/package.json
  6. 14
      libs/remix-solidity/package.json
  7. 23
      libs/remix-tests/package.json
  8. 10
      libs/remix-url-resolver/package.json

@ -1,8 +1,8 @@
{ {
"name": "@remix-project/remix-analyzer", "name": "@remix-project/remix-analyzer",
"version": "0.5.4", "version": "0.5.5",
"description": "Tool to perform static analysis on Solidity smart contracts", "description": "Tool to perform static analysis on Solidity smart contracts",
"main": "./index.js", "main": "index.js",
"types": ".index.d.ts", "types": ".index.d.ts",
"contributors": [ "contributors": [
{ {
@ -19,8 +19,11 @@
} }
], ],
"dependencies": { "dependencies": {
"@remix-project/remix-astwalker": "0.0.25", "@remix-project/remix-astwalker": "^0.0.26",
"@remix-project/remix-lib": "0.4.30" "@remix-project/remix-lib": "^0.4.31",
"ethereumjs-block": "^2.2.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-vm": "4.1.3"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
@ -41,5 +44,7 @@
"tape": "^4.6.0", "tape": "^4.6.0",
"ts-node": "^8.6.2", "ts-node": "^8.6.2",
"typescript": "^3.7.5" "typescript": "^3.7.5"
} },
} "typings": "index.d.ts",
"gitHead": "832387514c359d9b29fe0fb9ae0444a58b9c4253"
}

@ -1,8 +1,8 @@
{ {
"name": "@remix-project/remix-astwalker", "name": "@remix-project/remix-astwalker",
"version": "0.0.25", "version": "0.0.26",
"description": "Tool to walk through Solidity AST", "description": "Tool to walk through Solidity AST",
"main": "./index.js", "main": "index.js",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"test": "./../../node_modules/.bin/nyc --reporter=lcov --require ts-node/register --require tsconfig-paths/register ./../../node_modules/.bin/tape ./tests/*.ts | ./../../node_modules/.bin/tap-spec; ./../../node_modules/.bin/nyc report ---reporter=text" "test": "./../../node_modules/.bin/nyc --reporter=lcov --require ts-node/register --require tsconfig-paths/register ./../../node_modules/.bin/tape ./tests/*.ts | ./../../node_modules/.bin/tap-spec; ./../../node_modules/.bin/nyc report ---reporter=text"
@ -34,14 +34,19 @@
] ]
}, },
"dependencies": { "dependencies": {
"@remix-project/remix-lib": "^0.4.31",
"@types/tape": "^4.2.33", "@types/tape": "^4.2.33",
"ethereumjs-block": "^2.2.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-vm": "4.1.3",
"nyc": "^13.3.0", "nyc": "^13.3.0",
"@remix-project/remix-lib": "0.4.30",
"tape": "^4.10.1", "tape": "^4.10.1",
"ts-node": "^8.0.3", "ts-node": "^8.0.3",
"typescript": "^3.4.3" "typescript": "^3.4.3"
}, },
"devDependencies": { "devDependencies": {
"tap-spec": "^5.0.0" "tap-spec": "^5.0.0"
} },
} "typings": "index.d.ts",
"gitHead": "832387514c359d9b29fe0fb9ae0444a58b9c4253"
}

@ -1,6 +1,6 @@
{ {
"name": "@remix-project/remix-debug", "name": "@remix-project/remix-debug",
"version": "0.4.6", "version": "0.4.7",
"description": "Tool to debug Ethereum transactions", "description": "Tool to debug Ethereum transactions",
"contributors": [ "contributors": [
{ {
@ -16,13 +16,15 @@
"email": "iuri.matias@gmail.com" "email": "iuri.matias@gmail.com"
} }
], ],
"main": "./index.js", "main": "index.js.js",
"dependencies": { "dependencies": {
"@remix-project/remix-astwalker": "^0.0.26",
"@remix-project/remix-lib": "^0.4.31",
"commander": "^2.19.0", "commander": "^2.19.0",
"ethereumjs-block": "^2.2.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^6.2.0", "ethereumjs-util": "^6.2.0",
"ethereumjs-vm": "4.1.3", "ethereumjs-vm": "4.1.3",
"@remix-project/remix-lib": "0.4.30",
"@remix-project/remix-astwalker": "0.0.25",
"web3": "^1.2.4" "web3": "^1.2.4"
}, },
"devDependencies": { "devDependencies": {
@ -52,5 +54,7 @@
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix-project/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-debug#readme" "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-debug#readme",
} "typings": "index.js.d.ts",
"gitHead": "832387514c359d9b29fe0fb9ae0444a58b9c4253"
}

@ -1,6 +1,6 @@
{ {
"name": "@remix-project/remix-lib", "name": "@remix-project/remix-lib",
"version": "0.4.30", "version": "0.4.31",
"description": "Library to various Remix tools", "description": "Library to various Remix tools",
"contributors": [ "contributors": [
{ {
@ -12,7 +12,7 @@
"email": "liana@ethdev.com" "email": "liana@ethdev.com"
} }
], ],
"main": "./index.js", "main": "src/index.js.js",
"dependencies": { "dependencies": {
"async": "^2.1.2", "async": "^2.1.2",
"ethereumjs-block": "^2.2.2", "ethereumjs-block": "^2.2.2",
@ -50,5 +50,7 @@
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix-project/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-lib#readme" "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-lib#readme",
} "typings": "src/index.js.d.ts",
"gitHead": "832387514c359d9b29fe0fb9ae0444a58b9c4253"
}

@ -1,6 +1,6 @@
{ {
"name": "@remix-project/remix-simulator", "name": "@remix-project/remix-simulator",
"version": "0.1.9-beta.7", "version": "0.1.9-beta.8",
"description": "Ethereum IDE and tools for the web", "description": "Ethereum IDE and tools for the web",
"contributors": [ "contributors": [
{ {
@ -12,8 +12,9 @@
"email": "yann@ethdev.com" "email": "yann@ethdev.com"
} }
], ],
"main": "./index.js", "main": "index.js.js",
"dependencies": { "dependencies": {
"@remix-project/remix-lib": "^0.4.31",
"ansi-gray": "^0.1.1", "ansi-gray": "^0.1.1",
"async": "^3.1.0", "async": "^3.1.0",
"body-parser": "^1.18.2", "body-parser": "^1.18.2",
@ -21,11 +22,12 @@
"commander": "^2.19.0", "commander": "^2.19.0",
"cors": "^2.8.5", "cors": "^2.8.5",
"ethereumjs-block": "^2.2.2", "ethereumjs-block": "^2.2.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^6.2.0", "ethereumjs-util": "^6.2.0",
"ethereumjs-vm": "4.1.3",
"express": "^4.16.3", "express": "^4.16.3",
"express-ws": "^4.0.0", "express-ws": "^4.0.0",
"merge": "^1.2.0", "merge": "^1.2.0",
"@remix-project/remix-lib": "0.4.30",
"time-stamp": "^2.0.0", "time-stamp": "^2.0.0",
"web3": "^1.2.4" "web3": "^1.2.4"
}, },
@ -59,5 +61,7 @@
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix-project/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-simulator#readme" "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-simulator#readme",
} "typings": "index.js.d.ts",
"gitHead": "832387514c359d9b29fe0fb9ae0444a58b9c4253"
}

@ -1,8 +1,8 @@
{ {
"name": "@remix-project/remix-solidity", "name": "@remix-project/remix-solidity",
"version": "0.3.31", "version": "0.3.32",
"description": "Tool to load and run Solidity compiler", "description": "Tool to load and run Solidity compiler",
"main": "./index.js", "main": "index.js",
"types": "./index.d.ts", "types": "./index.d.ts",
"contributors": [ "contributors": [
{ {
@ -15,7 +15,11 @@
} }
], ],
"dependencies": { "dependencies": {
"@remix-project/remix-lib": "^0.4.31",
"eslint-scope": "^5.0.0", "eslint-scope": "^5.0.0",
"ethereumjs-block": "^2.2.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-vm": "4.1.3",
"solc": "^0.6.0", "solc": "^0.6.0",
"webworkify-webpack": "^2.1.5" "webworkify-webpack": "^2.1.5"
}, },
@ -48,5 +52,7 @@
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix-project/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-solidity#readme" "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-solidity#readme",
} "typings": "index.d.ts",
"gitHead": "832387514c359d9b29fe0fb9ae0444a58b9c4253"
}

@ -1,8 +1,8 @@
{ {
"name": "@remix-project/remix-tests", "name": "@remix-project/remix-tests",
"version": "0.1.34", "version": "0.1.35",
"description": "Tool to test Solidity smart contracts", "description": "Tool to test Solidity smart contracts",
"main": "./src/index.js", "main": "src/index.js",
"types": "./src/index.d.ts", "types": "./src/index.d.ts",
"contributors": [ "contributors": [
{ {
@ -35,14 +35,21 @@
}, },
"homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-tests#readme", "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-tests#readme",
"dependencies": { "dependencies": {
"@remix-project/remix-lib": "^0.4.31",
"@remix-project/remix-simulator": "^0.1.9-beta.8",
"@remix-project/remix-solidity": "^0.3.32",
"ansi-gray": "^0.1.1",
"async": "^2.6.0", "async": "^2.6.0",
"change-case": "^3.0.1", "change-case": "^3.0.1",
"color-support": "^1.1.3",
"colors": "^1.1.2", "colors": "^1.1.2",
"commander": "^2.13.0", "commander": "^2.13.0",
"@remix-project/remix-lib": "0.4.30", "ethereumjs-block": "^2.2.2",
"@remix-project/remix-simulator": "0.1.9-beta.7", "ethereumjs-tx": "^2.1.2",
"@remix-project/remix-solidity": "0.3.31", "ethereumjs-vm": "4.1.3",
"merge": "^1.2.0",
"signale": "^1.4.0", "signale": "^1.4.0",
"time-stamp": "^2.2.0",
"web3": "^1.2.4", "web3": "^1.2.4",
"winston": "^3.0.0" "winston": "^3.0.0"
}, },
@ -61,5 +68,7 @@
"mocha": "^5.1.0", "mocha": "^5.1.0",
"ts-node": "^8.0.2", "ts-node": "^8.0.2",
"typescript": "^3.3.1" "typescript": "^3.3.1"
} },
} "typings": "src/index.d.ts",
"gitHead": "832387514c359d9b29fe0fb9ae0444a58b9c4253"
}

@ -1,8 +1,8 @@
{ {
"name": "@remix-project/remix-url-resolver", "name": "@remix-project/remix-url-resolver",
"version": "0.0.16", "version": "0.0.17",
"description": "Solidity import url resolver engine", "description": "Solidity import url resolver engine",
"main": "./index.js", "main": "index.js",
"types": "./index.d.ts", "types": "./index.d.ts",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
@ -39,5 +39,7 @@
"ts-node": "^7.0.1", "ts-node": "^7.0.1",
"tslint": "^5.11.0", "tslint": "^5.11.0",
"typescript": "^3.1.6" "typescript": "^3.1.6"
} },
} "typings": "index.d.ts",
"gitHead": "832387514c359d9b29fe0fb9ae0444a58b9c4253"
}
Loading…
Cancel
Save