diff --git a/libs/remix-analyzer/package.json b/libs/remix-analyzer/package.json index 02dd1bf5e6..e6d4d3f9ae 100644 --- a/libs/remix-analyzer/package.json +++ b/libs/remix-analyzer/package.json @@ -2,8 +2,8 @@ "name": "@remix-project/remix-analyzer", "version": "0.5.3", "description": "Tool to perform static analysis on Solidity smart contracts", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", + "main": "./index.js", + "types": ".index.d.ts", "contributors": [ { "name": "Alex Beregszaszi", @@ -24,19 +24,11 @@ }, "scripts": { "build": "tsc", - "lint": "standard", "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", "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": { "@types/node": "^13.7.0", "babel-eslint": "^7.1.1", diff --git a/libs/remix-astwalker/package.json b/libs/remix-astwalker/package.json index 23e27e95a7..6f75981a0b 100644 --- a/libs/remix-astwalker/package.json +++ b/libs/remix-astwalker/package.json @@ -1,28 +1,27 @@ { "name": "@remix-project/remix-astwalker", "version": "0.0.24", - "description": "Remix sub-module for walking through AST", - "main": "dist/index.js", + "description": "Tool to walk through Solidity AST", + "main": "./index.js", "scripts": { "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", - "prepublish": "npm run build" + "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" }, "repository": { "type": "git", - "url": "git+https://github.com/ethereum/remix.git" + "url": "git+https://github.com/ethereum/remix-project.git" }, "keywords": [ "Solidity", "AST", "remix" ], - "author": "0mkara", + "author": "Remix Team", "license": "MIT", "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": { "include": [ "src/**/*.ts" @@ -34,7 +33,7 @@ "dependencies": { "@types/tape": "^4.2.33", "nyc": "^13.3.0", - "remix-lib": "0.4.30", + "@remix-project/remix-lib": "0.4.30", "tape": "^4.10.1", "ts-node": "^8.0.3", "typescript": "^3.4.3" diff --git a/libs/remix-debug/package.json b/libs/remix-debug/package.json index ff76c16277..bf5ed83e9b 100644 --- a/libs/remix-debug/package.json +++ b/libs/remix-debug/package.json @@ -33,65 +33,20 @@ "@babel/preset-stage-0": "^7.0.0", "babel-eslint": "^7.1.1", "babelify": "^10.0.0", - "notify-error": "^1.2.0", "solc": "^0.6.0", - "standard": "^7.0.1", - "standard-reporter": "^1.0.5", "tape": "^4.6.0" }, "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" }, "repository": { "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", "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", - "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" - ] - } - ] - ] - } + "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-debug#readme" } diff --git a/libs/remix-lib/package.json b/libs/remix-lib/package.json index 6a18bc26eb..5a4b528b83 100644 --- a/libs/remix-lib/package.json +++ b/libs/remix-lib/package.json @@ -1,7 +1,7 @@ { "name": "@remix-project/remix-lib", "version": "0.4.29", - "description": "Ethereum IDE and tools for the web", + "description": "Library to various Remix tools", "contributors": [ { "name": "Yann Levreau", @@ -33,7 +33,6 @@ "@babel/preset-stage-0": "^7.0.0", "babel-eslint": "^7.1.1", "babelify": "^10.0.0", - "standard": "^7.0.1", "tape": "^4.6.0" }, "scripts": { @@ -41,52 +40,12 @@ }, "repository": { "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", "bugs": { - "url": "https://github.com/ethereum/remix/issues" + "url": "https://github.com/ethereum/remix-project/issues" }, - "homepage": "https://github.com/ethereum/remix#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" - ] - } - ] - ] - } + "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-lib#readme" } diff --git a/libs/remix-simulator/package.json b/libs/remix-simulator/package.json index ede85cb37e..d45dd05836 100644 --- a/libs/remix-simulator/package.json +++ b/libs/remix-simulator/package.json @@ -26,7 +26,6 @@ "express-ws": "^4.0.0", "merge": "^1.2.0", "@remix-project/remix-lib": "0.4.29", - "standard": "^10.0.3", "time-stamp": "^2.0.0", "web3": "^1.2.4" }, @@ -39,63 +38,23 @@ "@babel/preset-stage-0": "^7.0.0", "babel-eslint": "^7.1.1", "babelify": "^10.0.0", - "mocha": "^5.2.0", - "standard": "^10.0.3" + "mocha": "^5.2.0" }, "scripts": { - "lint": "standard", "test": "./../../node_modules/.bin/mocha --require tsconfig-paths/register test/" }, "bin": { "ethsim": "./bin/ethsim", "remix-simulator": "./bin/ethsim" }, - "standard": { - "ignore": [ - "node_modules/*" - ], - "parser": "babel-eslint" - }, "repository": { "type": "git", - "url": "git+https://github.com/ethereum/remix.git" + "url": "git+https://github.com/ethereum/remix-project.git" }, "author": "remix team", "license": "MIT", "bugs": { - "url": "https://github.com/ethereum/remix/issues" + "url": "https://github.com/ethereum/remix-project/issues" }, - "homepage": "https://github.com/ethereum/remix#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" - ] - } - ] - ] - } + "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-simulator#readme" } diff --git a/libs/remix-solidity/package.json b/libs/remix-solidity/package.json index ea4419b768..f24d2bcb6c 100644 --- a/libs/remix-solidity/package.json +++ b/libs/remix-solidity/package.json @@ -2,8 +2,8 @@ "name": "@remix-project/remix-solidity", "version": "0.3.30", "description": "Tool to load and run Solidity compiler", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", + "main": "./index.js", + "types": "./index.d.ts", "contributors": [ { "name": "Yann Levreau", @@ -18,7 +18,7 @@ "eslint-scope": "^5.0.0", "@remix-project/remix-lib": "0.4.29", "solc": "^0.6.0", - "webworkify": "^1.2.1" + "webworkify-webpack": "^2.1.5" }, "devDependencies": { "@babel/core": "^7.4.5", @@ -30,60 +30,21 @@ "@types/node": "^13.1.1", "babel-eslint": "^10.0.0", "babelify": "^10.0.0", - "standard": "^7.0.1", "tape": "^4.6.0", "typescript": "^3.7.4" }, "scripts": { "build": "tsc", - "lint": "standard", "test": "./../../node_modules/.bin/tape ./test/tests.js" }, - "standard": { - "ignore": [ - "node_modules/*" - ] - }, "repository": { "type": "git", - "url": "https://github.com/ethereum/remix/tree/master/remix-solidity" + "url": "git+https://github.com/ethereum/remix-project.git" }, "author": "Remix Team", "license": "MIT", "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", - "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" - ] - } - ] - ] - } + "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-solidity#readme" } diff --git a/libs/remix-tests/package.json b/libs/remix-tests/package.json index 7fe9301fd4..08aba0db1f 100644 --- a/libs/remix-tests/package.json +++ b/libs/remix-tests/package.json @@ -2,8 +2,8 @@ "name": "@remix-project/remix-tests", "version": "0.1.33", "description": "Tool to test Solidity smart contracts", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", + "main": "./src/index.js", + "types": "./src/index.d.ts", "contributors": [ { "name": "Iuri Matias", @@ -19,26 +19,18 @@ }, "scripts": { "build": "tsc", - "lint": "standard", - "test": "./../../node_modules/.bin/mocha --require ts-node/register --require tsconfig-paths/register tests/*.ts -t 300000", - "prepublish": "npm run build" + "test": "./../../node_modules/.bin/mocha --require ts-node/register --require tsconfig-paths/register tests/*.ts -t 300000" }, "repository": { "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", "license": "MIT", "bugs": { - "url": "https://github.com/ethereum/remix/issues" + "url": "https://github.com/ethereum/remix-project/issues" }, - "standard": { - "ignore": [ - "tests/", - "dist/" - ] - }, - "homepage": "https://github.com/ethereum/remix/tree/master/remix-tests#readme", + "homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-tests#readme", "dependencies": { "async": "^2.6.0", "change-case": "^3.0.1", @@ -64,7 +56,6 @@ "@types/node": "^10.12.21", "@types/web3": "^1.0.18", "mocha": "^5.1.0", - "standard": "^10.0.3", "ts-node": "^8.0.2", "typescript": "^3.3.1" } diff --git a/libs/remix-url-resolver/package.json b/libs/remix-url-resolver/package.json index 6afec644ce..0d7c3b0158 100644 --- a/libs/remix-url-resolver/package.json +++ b/libs/remix-url-resolver/package.json @@ -2,17 +2,15 @@ "name": "@remix-project/remix-url-resolver", "version": "0.0.15", "description": "Solidity import url resolver engine", - "main": "dist", - "types": "dist/index.d.ts", + "main": "./index.js", + "types": "./index.d.ts", "scripts": { "build": "tsc", - "lint": "standard", - "test": "./../../node_modules/.bin/mocha --require ts-node/register --require tsconfig-paths/register tests/*.ts -t 300000", - "prepublish": "npm run build" + "test": "./../../node_modules/.bin/mocha --require ts-node/register --require tsconfig-paths/register tests/*.ts -t 300000" }, "repository": { "type": "git", - "url": "git+https://github.com/ethereum/remix.git" + "url": "git+https://github.com/ethereum/remix-project.git" }, "keywords": [ "solidity", @@ -22,11 +20,6 @@ ], "author": "Remix Team", "license": "MIT", - "standard": { - "ignore": [ - "tests/" - ] - }, "dependencies": { "axios": "^0.18.0", "solc": "^0.6.0", @@ -40,7 +33,6 @@ "chai": "^4.2.0", "mocha": "^5.1.0", "remix-plugin": "0.0.1-alpha.2", - "standard": "^12.0.1", "ts-node": "^7.0.1", "tslint": "^5.11.0", "typescript": "^3.1.6"