Files
extension/package.json
Jaco Greeff c70d9a0e63 Swap to eslint (#72)
* 626 problems (430 errors, 196 warnings)

* A start.

* < 200

* 80

* 0
2019-07-12 20:09:44 +02:00

34 lines
1.0 KiB
JSON

{
"version": "0.3.0-beta.0",
"description": "A sample signer extension for the @polkadot/api",
"repository": "https://github.com/polkadot-js/extension",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "Apache-2",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"yarn": "^1.10.1"
},
"resolutions": {
"babel-core": "^7.0.0-bridge.0",
"typescript": "^3.5.3"
},
"scripts": {
"build": "NODE_ENV=production polkadot-dev-build-ts",
"build:zip": "(cd packages/extension/build && zip -r -FS ../../../master-build.zip *)",
"check": "yarn lint",
"lint": "eslint --ext .js,.jsx,.ts,.tsx . && tsc --noEmit --pretty",
"clean": "polkadot-dev-clean-build",
"postinstall": "polkadot-dev-yarn-only",
"test": "echo \"no tests... yet\"",
"watch": "cd packages/extension && webpack --config webpack.config.js --watch"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@polkadot/dev-react": "^0.30.0-beta.21",
"@polkadot/ts": "^0.1.62"
}
}