2018-11-06 12:17:07 +00:00
|
|
|
{
|
2018-11-06 14:03:20 +00:00
|
|
|
"name": "status-js-api",
|
2019-06-10 16:44:36 +00:00
|
|
|
"version": "1.4.2",
|
2018-11-06 12:17:07 +00:00
|
|
|
"description": "",
|
2019-01-30 18:26:19 +00:00
|
|
|
"main": "index.js",
|
2018-11-06 12:17:07 +00:00
|
|
|
"scripts": {
|
2018-12-01 04:12:19 +00:00
|
|
|
"babel": "babel",
|
|
|
|
"babel:node": "npm-run-all babel:node:*",
|
|
|
|
"babel:node:src": "cross-env BABEL_ENV=node babel src --copy-files --extensions \".js,.ts\" --out-dir dist --source-maps",
|
|
|
|
"babel:watch": "run-p babel:watch:*",
|
|
|
|
"babel:watch:src": "npm run babel:node:src -- --verbose --watch",
|
|
|
|
"build": "npm-run-all build:*",
|
|
|
|
"build:node": "npm run babel:node",
|
|
|
|
"clean": "rimraf dist",
|
|
|
|
"lint": "npm-run-all lint:*",
|
2019-01-31 16:07:28 +00:00
|
|
|
"lint:js": "ls",
|
2018-12-01 04:12:19 +00:00
|
|
|
"lint:ts": "tslint -c tslint.json 'src/**/*.ts'",
|
2019-01-31 16:07:28 +00:00
|
|
|
"prepublishOnly": "npm-run-all clean build",
|
2018-12-01 04:12:19 +00:00
|
|
|
"start": "run-p start:*",
|
|
|
|
"start:babel": "npm run babel:watch",
|
|
|
|
"start:type-check": "npm run type-check:watch",
|
|
|
|
"tsc": "tsc",
|
|
|
|
"tslint": "tslint",
|
|
|
|
"type-check": "tsc",
|
|
|
|
"type-check:watch": "npm run type-check -- --watch"
|
2018-11-06 12:17:07 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/status-im/status-js.git"
|
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/status-im/status-js/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/status-im/status-js#readme",
|
|
|
|
"dependencies": {
|
2018-12-15 20:00:06 +00:00
|
|
|
"bip39": "^2.5.0",
|
2019-02-17 19:41:20 +00:00
|
|
|
"bourne": "^1.1.2",
|
2018-11-07 10:34:54 +00:00
|
|
|
"chance": "^1.0.16",
|
2018-12-15 20:00:06 +00:00
|
|
|
"ethereum-hdwallet": "0.0.19",
|
|
|
|
"ethereumjs-util": "^6.0.0",
|
2019-05-28 09:49:49 +00:00
|
|
|
"transit-js": "0.8.861",
|
2019-01-31 18:30:46 +00:00
|
|
|
"web3": "1.0.0-beta.36"
|
2018-11-14 17:55:07 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-12-01 04:12:19 +00:00
|
|
|
"@babel/cli": "^7.1.5",
|
|
|
|
"@babel/core": "^7.1.6",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.1.0",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.1.6",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
|
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
|
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
|
|
|
|
"@babel/plugin-transform-destructuring": "^7.1.3",
|
|
|
|
"@babel/plugin-transform-flow-strip-types": "^7.1.6",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.1.0",
|
|
|
|
"@babel/preset-env": "^7.1.6",
|
|
|
|
"@babel/preset-react": "^7.0.0",
|
|
|
|
"@babel/preset-typescript": "^7.1.0",
|
|
|
|
"@babel/runtime-corejs2": "^7.1.5",
|
|
|
|
"@types/web3": "^1.0.12",
|
2019-02-07 13:11:20 +00:00
|
|
|
"babel-eslint": "^10.0.1",
|
2018-12-01 04:12:19 +00:00
|
|
|
"babel-loader": "^8.0.4",
|
|
|
|
"babel-plugin-dynamic-import-node": "^2.2.0",
|
|
|
|
"babel-plugin-macros": "^2.4.2",
|
|
|
|
"babel-plugin-module-resolver": "^3.1.1",
|
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.20",
|
|
|
|
"cross-env": "^5.2.0",
|
|
|
|
"eslint": "^5.9.0",
|
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
"rimraf": "^2.6.2",
|
2019-01-31 16:07:28 +00:00
|
|
|
"source-map-support": "^0.5.10",
|
2018-12-01 04:12:19 +00:00
|
|
|
"tape-async": "^2.3.0",
|
|
|
|
"tslint": "^5.11.0",
|
|
|
|
"typescript": "^3.2.1"
|
2018-11-06 12:17:07 +00:00
|
|
|
}
|
|
|
|
}
|