|
| 1 | +{ |
| 2 | + "name": "@exabyte-io/PROJECT_NAME", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "PROJECT_DESCRIPTION", |
| 5 | + "scripts": { |
| 6 | + "test": "nyc --reporter=text mocha --recursive --bail --require @babel/register/lib --require tests/setup.js tests", |
| 7 | + "lint": "eslint src tests && prettier --write src tests", |
| 8 | + "lint:fix": "eslint --fix --cache src tests && prettier --write src tests", |
| 9 | + "transpile": "babel --out-dir dist src", |
| 10 | + "postinstall": "npm run transpile", |
| 11 | + "prepare": "husky install" |
| 12 | + }, |
| 13 | + "repository": { |
| 14 | + "type": "git", |
| 15 | + "url": "https://github.com/Exabyte-io/PROJECT_NAME.git" |
| 16 | + }, |
| 17 | + "main": "dist/index.js", |
| 18 | + "files": [ |
| 19 | + "/dist", |
| 20 | + "/src", |
| 21 | + ".babelrc" |
| 22 | + ], |
| 23 | + "author": "Exabyte Inc.", |
| 24 | + "bugs": { |
| 25 | + "url": "https://github.com/Exabyte-io/PROJECT_NAME/issues" |
| 26 | + }, |
| 27 | + "license": "Apache-2.0", |
| 28 | + "homepage": "https://github.com/Exabyte-io/PROJECT_NAME", |
| 29 | + "dependencies": { |
| 30 | + "@babel/cli": "7.16.0", |
| 31 | + "@babel/core": "7.16.0", |
| 32 | + "@babel/eslint-parser": "7.16.3", |
| 33 | + "@babel/plugin-proposal-class-properties": "7.16.0", |
| 34 | + "@babel/preset-env": "7.16.4", |
| 35 | + "@babel/preset-react": "7.16.7", |
| 36 | + "@babel/register": "^7.16.0", |
| 37 | + "@babel/runtime-corejs3": "7.16.8" |
| 38 | + }, |
| 39 | + "devDependencies": { |
| 40 | + "chai": "^4.3.4", |
| 41 | + "eslint": "7.32.0", |
| 42 | + "eslint-config-airbnb": "19.0.2", |
| 43 | + "eslint-config-prettier": "8.3.0", |
| 44 | + "eslint-plugin-import": "2.25.3", |
| 45 | + "eslint-plugin-jsdoc": "37.1.0", |
| 46 | + "eslint-plugin-jsx-a11y": "6.5.1", |
| 47 | + "eslint-plugin-prettier": "4.0.0", |
| 48 | + "eslint-plugin-simple-import-sort": "7.0.0", |
| 49 | + "husky": "^7.0.4", |
| 50 | + "lint-staged": "^12.1.2", |
| 51 | + "mocha": "^9.1.3", |
| 52 | + "nyc": "^15.1.0" |
| 53 | + }, |
| 54 | + "engines": { |
| 55 | + "node": ">=12.0.0" |
| 56 | + }, |
| 57 | + "lint-staged": { |
| 58 | + "*.js": "eslint --cache --fix", |
| 59 | + "*.{js,css}": "prettier --write" |
| 60 | + } |
| 61 | +} |
| 62 | + |
0 commit comments