fixed libs building

yann300-patch-33
Admin 3 years ago committed by yann300
parent f1ce49ecb1
commit 588b444771
  1. 6
      libs/remix-analyzer/package.json
  2. 4
      libs/remix-astwalker/package.json
  3. 6
      libs/remix-solidity/package.json

@ -2,8 +2,8 @@
"name": "@remix-project/remix-analyzer", "name": "@remix-project/remix-analyzer",
"version": "0.5.16", "version": "0.5.16",
"description": "Tool to perform static analysis on Solidity smart contracts", "description": "Tool to perform static analysis on Solidity smart contracts",
"main": "index.js", "main": "src/index.js",
"types": ".index.d.ts", "types": "src/index.d.ts",
"contributors": [ "contributors": [
{ {
"name": "Alex Beregszaszi", "name": "Alex Beregszaszi",
@ -50,6 +50,6 @@
"ts-node": "^8.6.2", "ts-node": "^8.6.2",
"typescript": "^3.7.5" "typescript": "^3.7.5"
}, },
"typings": "index.d.ts", "typings": "src/index.d.ts",
"gitHead": "4705cbc4d1761f75267992552da9db6cff2f3ed5" "gitHead": "4705cbc4d1761f75267992552da9db6cff2f3ed5"
} }

@ -2,7 +2,7 @@
"name": "@remix-project/remix-astwalker", "name": "@remix-project/remix-astwalker",
"version": "0.0.37", "version": "0.0.37",
"description": "Tool to walk through Solidity AST", "description": "Tool to walk through Solidity AST",
"main": "index.js", "main": "src/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"
@ -52,6 +52,6 @@
"devDependencies": { "devDependencies": {
"tap-spec": "^5.0.0" "tap-spec": "^5.0.0"
}, },
"typings": "index.d.ts", "typings": "src/index.d.ts",
"gitHead": "4705cbc4d1761f75267992552da9db6cff2f3ed5" "gitHead": "4705cbc4d1761f75267992552da9db6cff2f3ed5"
} }

@ -2,8 +2,8 @@
"name": "@remix-project/remix-solidity", "name": "@remix-project/remix-solidity",
"version": "0.4.7", "version": "0.4.7",
"description": "Tool to load and run Solidity compiler", "description": "Tool to load and run Solidity compiler",
"main": "index.js", "main": "src/index.js",
"types": "./index.d.ts", "types": "src/index.d.ts",
"contributors": [ "contributors": [
{ {
"name": "Yann Levreau", "name": "Yann Levreau",
@ -60,6 +60,6 @@
"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", "typings": "src/index.d.ts",
"gitHead": "4705cbc4d1761f75267992552da9db6cff2f3ed5" "gitHead": "4705cbc4d1761f75267992552da9db6cff2f3ed5"
} }
Loading…
Cancel
Save