ethers.js/package.json

69 lines
2.5 KiB
JSON
Raw Normal View History

2016-07-14 20:43:15 +03:00
{
2017-03-08 09:50:12 +03:00
"name": "ethers",
2019-08-22 22:27:28 +03:00
"version": "4.0.36",
2016-07-14 20:43:15 +03:00
"description": "Ethereum wallet library.",
"main": "./index.js",
"types": "./index.d.ts",
2016-07-14 20:43:15 +03:00
"scripts": {
"build": "npm run dist-version && tsc -p ./tsconfig.json",
"auto-build": "npm run build -- -w",
2018-11-09 02:25:16 +03:00
"dist": "npm run dist-version && npm run build && gulp default minified shims && npm run dist-types",
"dist-test": "gulp default-test minified-test shims",
"dist-bip39": "gulp bip39-es bip39-fr bip39-it bip39-ja bip39-ko bip39-zh",
"dist-types": "dts-bundle --name ethers --main ./index.d.ts --out ./dist/ethers.types.txt",
"dist-version": "node -e \"let v = require('./package.json').version; require('fs').writeFileSync('./src.ts/_version.ts', 'export const version = \\\"' + v +'\\\";\\n')\"",
"eslint": "eslint index.js contracts/*.js providers/*.js utils/*.js wallet/*.js wordlists/*.js",
2017-10-23 01:17:31 +03:00
"test": "if [ \"$RUN_PHANTOMJS\" = \"1\" ]; then npm run-script test-phantomjs; else npm run-script test-node; fi",
"test-node": "npm run dist-test && mocha --no-colors --reporter tests/reporter tests/test-*.js",
"test-phantomjs": "npm run dist-test && gulp tests && phantomjs --web-security=false ./node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js ./tests/test.html ./tests/reporter.js",
"version": "npm dist"
2016-07-14 20:43:15 +03:00
},
"dependencies": {
2018-06-13 22:39:39 +03:00
"@types/node": "^10.3.2",
"aes-js": "3.0.0",
"bn.js": "^4.4.0",
"elliptic": "6.3.3",
2018-06-14 09:55:44 +03:00
"hash.js": "1.1.3",
"js-sha3": "0.5.7",
"scrypt-js": "2.0.4",
"setimmediate": "1.0.4",
"uuid": "2.0.1",
"xmlhttprequest": "1.8.0"
2016-07-27 00:57:11 +03:00
},
2016-07-14 20:43:15 +03:00
"devDependencies": {
2018-11-09 02:25:16 +03:00
"browserify": "^16.2.3",
"browserify-zlib": "^0.2.0",
"dts-bundle": "^0.7.3",
"eslint": "^5.16.0",
"eslint-plugin-promise": "^3.8.0",
"ethereumjs-tx": "^1.3.5",
"ethereumjs-util": "^5.2.0",
2018-07-31 06:15:36 +03:00
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^5.0.0-alpha.1",
"gulp-uglify": "^3.0.0",
2018-07-31 06:15:36 +03:00
"mocha": "^5.2.0",
"mocha-phantomjs-core": "2.1.2",
"solc": "0.4.20",
"tsify": "^4.0.0",
2018-06-13 22:39:39 +03:00
"tslint": "^5.10.0",
"typescript": "^2.9.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
2018-07-31 06:15:36 +03:00
"web3-providers-http": "1.0.0-beta.35"
},
2018-11-09 00:03:33 +03:00
"browser": "./dist/ethers.min.js",
2016-07-14 20:43:15 +03:00
"keywords": [
"ethereum",
2018-06-22 04:13:34 +03:00
"library",
2016-07-14 20:43:15 +03:00
"wallet"
],
"author": "Richard Moore <me@ricmoo.com>",
2016-08-10 21:30:33 +03:00
"repository": {
"type": "git",
2018-06-22 04:13:34 +03:00
"url": "git://github.com/ethers-io/ethers.js.git"
2016-08-10 21:30:33 +03:00
},
2016-07-14 20:43:15 +03:00
"license": "MIT"
}