status-js-api/package.json

78 lines
2.6 KiB
JSON
Raw Permalink Normal View History

{
2018-11-06 14:03:20 +00:00
"name": "status-js-api",
2019-06-10 16:44:36 +00:00
"version": "1.4.2",
"description": "",
2019-01-30 18:26:19 +00:00
"main": "index.js",
"scripts": {
"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:*",
"lint:js": "ls",
"lint:ts": "tslint -c tslint.json 'src/**/*.ts'",
"prepublishOnly": "npm-run-all clean build",
"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"
},
"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": {
"bip39": "^2.5.0",
"bourne": "^1.1.2",
2018-11-07 10:34:54 +00:00
"chance": "^1.0.16",
"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"
},
"devDependencies": {
"@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",
"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",
"source-map-support": "^0.5.10",
"tape-async": "^2.3.0",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
}
}