|
| 1 | +{ |
| 2 | + "name": "react-usage-bar", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Usage bar, graphic component for React", |
| 5 | + "main": "build/index.js", |
| 6 | + "module": "build/index.es.js", |
| 7 | + "jsnext:main": "build/index.es.js", |
| 8 | + "scripts": { |
| 9 | + "build": "rollup -c", |
| 10 | + "lint": "standard", |
| 11 | + "format": "prettier-standard --format", |
| 12 | + "test": "jest --coverage", |
| 13 | + "storybook": "start-storybook" |
| 14 | + }, |
| 15 | + "keywords": [ |
| 16 | + "react", |
| 17 | + "usage bar", |
| 18 | + "design", |
| 19 | + "component" |
| 20 | + ], |
| 21 | + "author": { |
| 22 | + "name": "ChrisUser", |
| 23 | + "url": "https://github.com/ChrisUser" |
| 24 | + }, |
| 25 | + "license": "MIT", |
| 26 | + "devDependencies": { |
| 27 | + "@babel/core": "^7.9.6", |
| 28 | + "@storybook/addon-a11y": "^5.3.19", |
| 29 | + "@storybook/addon-docs": "^5.3.19", |
| 30 | + "@storybook/addon-viewport": "^5.3.19", |
| 31 | + "@storybook/react": "^5.3.19", |
| 32 | + "@testing-library/jest-dom": "^5.8.0", |
| 33 | + "@testing-library/react": "^10.0.4", |
| 34 | + "@types/jest": "^25.2.3", |
| 35 | + "@types/react": "^16.9.35", |
| 36 | + "@types/react-dom": "^16.9.8", |
| 37 | + "awesome-typescript-loader": "^5.2.1", |
| 38 | + "babel-loader": "^8.1.0", |
| 39 | + "jest": "^26.0.1", |
| 40 | + "prettier-standard": "^16.3.0", |
| 41 | + "react": "^16.13.1", |
| 42 | + "react-docgen-typescript-loader": "^3.7.2", |
| 43 | + "react-dom": "^16.13.1", |
| 44 | + "rollup": "^2.10.9", |
| 45 | + "rollup-plugin-commonjs": "^10.1.0", |
| 46 | + "rollup-plugin-node-resolve": "^5.2.0", |
| 47 | + "rollup-plugin-peer-deps-external": "^2.2.2", |
| 48 | + "rollup-plugin-postcss": "^3.1.1", |
| 49 | + "rollup-plugin-terser": "^6.1.0", |
| 50 | + "rollup-plugin-typescript2": "^0.27.1", |
| 51 | + "standard": "^14.3.4", |
| 52 | + "standard-prettier": "^1.0.1", |
| 53 | + "ts-jest": "^26.0.0", |
| 54 | + "ts-loader": "^7.0.5", |
| 55 | + "typescript": "^3.9.3" |
| 56 | + }, |
| 57 | + "peerDependencies": { |
| 58 | + "react": "^16", |
| 59 | + "react-dom": "^16" |
| 60 | + }, |
| 61 | + "jest": { |
| 62 | + "preset": "ts-jest", |
| 63 | + "testEnvironment": "jsdom", |
| 64 | + "testPathIgnorePatterns": [ |
| 65 | + "build/" |
| 66 | + ] |
| 67 | + }, |
| 68 | + "standard": { |
| 69 | + "ignore": [ |
| 70 | + "node_modules/", |
| 71 | + "build/" |
| 72 | + ], |
| 73 | + "globals": [ |
| 74 | + "describe", |
| 75 | + "it", |
| 76 | + "test", |
| 77 | + "expect", |
| 78 | + "afterAll", |
| 79 | + "jest" |
| 80 | + ] |
| 81 | + } |
| 82 | +} |
0 commit comments