libs package.json updated

pull/24/head
aniket-engg 4 years ago committed by Aniket
parent b0b0de9fa3
commit b10ebc33df
  1. 14
      libs/remix-analyzer/package.json
  2. 17
      libs/remix-astwalker/package.json
  3. 53
      libs/remix-debug/package.json
  4. 51
      libs/remix-lib/package.json
  5. 49
      libs/remix-simulator/package.json
  6. 51
      libs/remix-solidity/package.json
  7. 21
      libs/remix-tests/package.json
  8. 16
      libs/remix-url-resolver/package.json

@ -2,8 +2,8 @@
"name": "@remix-project/remix-analyzer", "name": "@remix-project/remix-analyzer",
"version": "0.5.3", "version": "0.5.3",
"description": "Tool to perform static analysis on Solidity smart contracts", "description": "Tool to perform static analysis on Solidity smart contracts",
"main": "./dist/index.js", "main": "./index.js",
"types": "./dist/index.d.ts", "types": ".index.d.ts",
"contributors": [ "contributors": [
{ {
"name": "Alex Beregszaszi", "name": "Alex Beregszaszi",
@ -24,19 +24,11 @@
}, },
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"lint": "standard",
"test": "./../../node_modules/.bin/ts-node --require tsconfig-paths/register ./../../node_modules/.bin/tape ./test/tests.ts" "test": "./../../node_modules/.bin/ts-node --require tsconfig-paths/register ./../../node_modules/.bin/tape ./test/tests.ts"
}, },
"standard": {
"ignore": [
"node_modules/*",
"dist/"
],
"parser": "babel-eslint"
},
"author": "Remix Team", "author": "Remix Team",
"license": "MIT", "license": "MIT",
"homepage": "https://github.com/ethereum/remix/tree/master/remix-analyzer#readme", "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-analyzer#readme",
"devDependencies": { "devDependencies": {
"@types/node": "^13.7.0", "@types/node": "^13.7.0",
"babel-eslint": "^7.1.1", "babel-eslint": "^7.1.1",

@ -1,28 +1,27 @@
{ {
"name": "@remix-project/remix-astwalker", "name": "@remix-project/remix-astwalker",
"version": "0.0.24", "version": "0.0.24",
"description": "Remix sub-module for walking through AST", "description": "Tool to walk through Solidity AST",
"main": "dist/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"
"prepublish": "npm run build"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/ethereum/remix.git" "url": "git+https://github.com/ethereum/remix-project.git"
}, },
"keywords": [ "keywords": [
"Solidity", "Solidity",
"AST", "AST",
"remix" "remix"
], ],
"author": "0mkara", "author": "Remix Team",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix#readme", "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-astwalker#readme",
"nyc": { "nyc": {
"include": [ "include": [
"src/**/*.ts" "src/**/*.ts"
@ -34,7 +33,7 @@
"dependencies": { "dependencies": {
"@types/tape": "^4.2.33", "@types/tape": "^4.2.33",
"nyc": "^13.3.0", "nyc": "^13.3.0",
"remix-lib": "0.4.30", "@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"

@ -33,65 +33,20 @@
"@babel/preset-stage-0": "^7.0.0", "@babel/preset-stage-0": "^7.0.0",
"babel-eslint": "^7.1.1", "babel-eslint": "^7.1.1",
"babelify": "^10.0.0", "babelify": "^10.0.0",
"notify-error": "^1.2.0",
"solc": "^0.6.0", "solc": "^0.6.0",
"standard": "^7.0.1",
"standard-reporter": "^1.0.5",
"tape": "^4.6.0" "tape": "^4.6.0"
}, },
"scripts": { "scripts": {
"build": "mkdirp build; browserify index.js > build/app.js",
"lint": "standard | notify-error",
"test": "./../../node_modules/.bin/tape --require tsconfig-paths/register ./test/tests.js" "test": "./../../node_modules/.bin/tape --require tsconfig-paths/register ./test/tests.js"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/ethereum/remix.git" "url": "git+https://github.com/ethereum/remix-project.git"
}, },
"author": "cpp-ethereum team", "author": "Remix Team",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix/tree/master/remix-debug#readme", "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-debug#readme"
"standard": {
"ignore": [
"node_modules/*",
"build/*",
"test/resources/*"
],
"parser": "babel-eslint"
},
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
[
"fast-async",
{
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}
],
"module:@babel/plugin-transform-object-assign"
]
}
],
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
} }

@ -1,7 +1,7 @@
{ {
"name": "@remix-project/remix-lib", "name": "@remix-project/remix-lib",
"version": "0.4.29", "version": "0.4.29",
"description": "Ethereum IDE and tools for the web", "description": "Library to various Remix tools",
"contributors": [ "contributors": [
{ {
"name": "Yann Levreau", "name": "Yann Levreau",
@ -33,7 +33,6 @@
"@babel/preset-stage-0": "^7.0.0", "@babel/preset-stage-0": "^7.0.0",
"babel-eslint": "^7.1.1", "babel-eslint": "^7.1.1",
"babelify": "^10.0.0", "babelify": "^10.0.0",
"standard": "^7.0.1",
"tape": "^4.6.0" "tape": "^4.6.0"
}, },
"scripts": { "scripts": {
@ -41,52 +40,12 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/ethereum/remix.git" "url": "git+https://github.com/ethereum/remix-project.git"
}, },
"author": "cpp-ethereum team", "author": "Remix Team",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix#readme", "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-lib#readme"
"standard": {
"ignore": [
"node_modules/*",
"build/*",
"test/resources/*"
],
"parser": "babel-eslint"
},
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
[
"fast-async",
{
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}
],
"module:@babel/plugin-transform-object-assign"
]
}
],
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
} }

@ -26,7 +26,6 @@
"express-ws": "^4.0.0", "express-ws": "^4.0.0",
"merge": "^1.2.0", "merge": "^1.2.0",
"@remix-project/remix-lib": "0.4.29", "@remix-project/remix-lib": "0.4.29",
"standard": "^10.0.3",
"time-stamp": "^2.0.0", "time-stamp": "^2.0.0",
"web3": "^1.2.4" "web3": "^1.2.4"
}, },
@ -39,63 +38,23 @@
"@babel/preset-stage-0": "^7.0.0", "@babel/preset-stage-0": "^7.0.0",
"babel-eslint": "^7.1.1", "babel-eslint": "^7.1.1",
"babelify": "^10.0.0", "babelify": "^10.0.0",
"mocha": "^5.2.0", "mocha": "^5.2.0"
"standard": "^10.0.3"
}, },
"scripts": { "scripts": {
"lint": "standard",
"test": "./../../node_modules/.bin/mocha --require tsconfig-paths/register test/" "test": "./../../node_modules/.bin/mocha --require tsconfig-paths/register test/"
}, },
"bin": { "bin": {
"ethsim": "./bin/ethsim", "ethsim": "./bin/ethsim",
"remix-simulator": "./bin/ethsim" "remix-simulator": "./bin/ethsim"
}, },
"standard": {
"ignore": [
"node_modules/*"
],
"parser": "babel-eslint"
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/ethereum/remix.git" "url": "git+https://github.com/ethereum/remix-project.git"
}, },
"author": "remix team", "author": "remix team",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix#readme", "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-simulator#readme"
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
[
"fast-async",
{
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}
],
"module:@babel/plugin-transform-object-assign"
]
}
],
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
} }

@ -2,8 +2,8 @@
"name": "@remix-project/remix-solidity", "name": "@remix-project/remix-solidity",
"version": "0.3.30", "version": "0.3.30",
"description": "Tool to load and run Solidity compiler", "description": "Tool to load and run Solidity compiler",
"main": "./dist/index.js", "main": "./index.js",
"types": "./dist/index.d.ts", "types": "./index.d.ts",
"contributors": [ "contributors": [
{ {
"name": "Yann Levreau", "name": "Yann Levreau",
@ -18,7 +18,7 @@
"eslint-scope": "^5.0.0", "eslint-scope": "^5.0.0",
"@remix-project/remix-lib": "0.4.29", "@remix-project/remix-lib": "0.4.29",
"solc": "^0.6.0", "solc": "^0.6.0",
"webworkify": "^1.2.1" "webworkify-webpack": "^2.1.5"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.4.5", "@babel/core": "^7.4.5",
@ -30,60 +30,21 @@
"@types/node": "^13.1.1", "@types/node": "^13.1.1",
"babel-eslint": "^10.0.0", "babel-eslint": "^10.0.0",
"babelify": "^10.0.0", "babelify": "^10.0.0",
"standard": "^7.0.1",
"tape": "^4.6.0", "tape": "^4.6.0",
"typescript": "^3.7.4" "typescript": "^3.7.4"
}, },
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"lint": "standard",
"test": "./../../node_modules/.bin/tape ./test/tests.js" "test": "./../../node_modules/.bin/tape ./test/tests.js"
}, },
"standard": {
"ignore": [
"node_modules/*"
]
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/ethereum/remix/tree/master/remix-solidity" "url": "git+https://github.com/ethereum/remix-project.git"
}, },
"author": "Remix Team", "author": "Remix Team",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix/tree/master/remix-solidity#readme", "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-solidity#readme"
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
[
"fast-async",
{
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}
],
"module:@babel/plugin-transform-object-assign"
]
}
],
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
} }

@ -2,8 +2,8 @@
"name": "@remix-project/remix-tests", "name": "@remix-project/remix-tests",
"version": "0.1.33", "version": "0.1.33",
"description": "Tool to test Solidity smart contracts", "description": "Tool to test Solidity smart contracts",
"main": "./dist/index.js", "main": "./src/index.js",
"types": "./dist/index.d.ts", "types": "./src/index.d.ts",
"contributors": [ "contributors": [
{ {
"name": "Iuri Matias", "name": "Iuri Matias",
@ -19,26 +19,18 @@
}, },
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"lint": "standard", "test": "./../../node_modules/.bin/mocha --require ts-node/register --require tsconfig-paths/register tests/*.ts -t 300000"
"test": "./../../node_modules/.bin/mocha --require ts-node/register --require tsconfig-paths/register tests/*.ts -t 300000",
"prepublish": "npm run build"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/ethereum/remix/tree/master/remix-tests" "url": "git+https://github.com/ethereum/remix-project.git"
}, },
"author": "Remix Team", "author": "Remix Team",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"standard": { "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-tests#readme",
"ignore": [
"tests/",
"dist/"
]
},
"homepage": "https://github.com/ethereum/remix/tree/master/remix-tests#readme",
"dependencies": { "dependencies": {
"async": "^2.6.0", "async": "^2.6.0",
"change-case": "^3.0.1", "change-case": "^3.0.1",
@ -64,7 +56,6 @@
"@types/node": "^10.12.21", "@types/node": "^10.12.21",
"@types/web3": "^1.0.18", "@types/web3": "^1.0.18",
"mocha": "^5.1.0", "mocha": "^5.1.0",
"standard": "^10.0.3",
"ts-node": "^8.0.2", "ts-node": "^8.0.2",
"typescript": "^3.3.1" "typescript": "^3.3.1"
} }

@ -2,17 +2,15 @@
"name": "@remix-project/remix-url-resolver", "name": "@remix-project/remix-url-resolver",
"version": "0.0.15", "version": "0.0.15",
"description": "Solidity import url resolver engine", "description": "Solidity import url resolver engine",
"main": "dist", "main": "./index.js",
"types": "dist/index.d.ts", "types": "./index.d.ts",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"lint": "standard", "test": "./../../node_modules/.bin/mocha --require ts-node/register --require tsconfig-paths/register tests/*.ts -t 300000"
"test": "./../../node_modules/.bin/mocha --require ts-node/register --require tsconfig-paths/register tests/*.ts -t 300000",
"prepublish": "npm run build"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/ethereum/remix.git" "url": "git+https://github.com/ethereum/remix-project.git"
}, },
"keywords": [ "keywords": [
"solidity", "solidity",
@ -22,11 +20,6 @@
], ],
"author": "Remix Team", "author": "Remix Team",
"license": "MIT", "license": "MIT",
"standard": {
"ignore": [
"tests/"
]
},
"dependencies": { "dependencies": {
"axios": "^0.18.0", "axios": "^0.18.0",
"solc": "^0.6.0", "solc": "^0.6.0",
@ -40,7 +33,6 @@
"chai": "^4.2.0", "chai": "^4.2.0",
"mocha": "^5.1.0", "mocha": "^5.1.0",
"remix-plugin": "0.0.1-alpha.2", "remix-plugin": "0.0.1-alpha.2",
"standard": "^12.0.1",
"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"

Loading…
Cancel
Save