-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from DakshMiglani/node-mode-fix
change rollup builds and add new tests for common.js as well as es6
- Loading branch information
Showing
9 changed files
with
331 additions
and
860 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"name": "dsa-connect", | ||
"version": "0.0.5", | ||
"description": "Build DeFi apps instantly", | ||
"main": "index.js", | ||
"files": [ | ||
"index.js", | ||
"README.md" | ||
], | ||
"types": "./index.d.ts", | ||
"private": false, | ||
"scripts": { | ||
"dev": "concurrently -c yellow,blue -n RLP,SRV \"npm:build:watch\" \"npm:serve\"", | ||
"build": "rollup -c", | ||
"build:watch": "rollup -cw", | ||
"test": "jest --coverage", | ||
"test:watch": "jest --coverage --watch", | ||
"serve": "npx light-server --serve . -w \"index.html\" -w \"app.js\" -w \"index.es.js\" -w \"index.bundle.js\"", | ||
"trypublish": "npm publish || true", | ||
"postversion": "git push && git push --tags && npm publish && npm run open-releases", | ||
"open-releases": "open \"$(node -e 'console.log(`${require(\"./package.json\").repository}/releases`)')\"", | ||
"ganache:fork": "dotenv -- cross-var npx ganache-cli --fork %ETH_NODE_URL% --unlock %PUBLIC_ADDRESS%" | ||
}, | ||
"bugs": "https://github.com/instadapp/dsa-connect/issues", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/instadapp/dsa-connect" | ||
}, | ||
"author": { | ||
"name": "INSTADAPP LABS LLC", | ||
"email": "[email protected]" | ||
}, | ||
"license": "MIT", | ||
"keywords": [ | ||
"ethereum", | ||
"defi", | ||
"dapps" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.10.1", | ||
"@babel/core": "^7.9.0", | ||
"@babel/node": "^7.8.7", | ||
"@babel/plugin-proposal-class-properties": "^7.10.1", | ||
"@babel/polyfill": "^7.10.1", | ||
"@babel/preset-env": "^7.10.2", | ||
"@types/jest": "^26.0.14", | ||
"babel-loader": "^8.1.0", | ||
"babel-preset-minify": "^0.5.0", | ||
"concurrently": "^5.3.0", | ||
"dotenv": "^8.2.0", | ||
"cross-var": "^1.1.0", | ||
"dotenv-cli": "^3.2.0", | ||
"ganache-cli": "^6.11.0", | ||
"html-webpack-plugin": "^4.2.0", | ||
"jest": "^26.5.2", | ||
"light-server": "^2.8.0", | ||
"prettier": "^2.0.5", | ||
"prettier-webpack-plugin": "^1.2.0", | ||
"rollup": "^2.28.2", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"rollup-plugin-typescript2": "^0.27.3", | ||
"@rollup/plugin-commonjs": "^18.0.0", | ||
"ts-jest": "^26.4.1", | ||
"tslib": "^2.0.1", | ||
"typescript": "^4.0.3", | ||
"web3": "^1.2.8", | ||
"webpack": "^4.42.1", | ||
"webpack-cli": "^3.3.11", | ||
"webpack-dev-server": "^3.11.0" | ||
} | ||
} |
Oops, something went wrong.