|
| 1 | +{ |
| 2 | + "name": "bbcode-to-react", |
| 3 | + "version": "0.1.1", |
| 4 | + "description": "A utility for turning raw BBCode into React elements. ", |
| 5 | + "main": "lib/index.js", |
| 6 | + "scripts": { |
| 7 | + "report-coverage": "coveralls < ./coverage/lcov.info", |
| 8 | + "test": "react-scripts test --env=jsdom", |
| 9 | + "cover": "npm test -- --coverage", |
| 10 | + "start": "npm run build", |
| 11 | + "build": "cross-env WEBPACK_BUILD=production webpack --progress --colors && webpack --progress --colors", |
| 12 | + "prebuild": "babel src --out-dir lib --ignore src/__tests__/", |
| 13 | + "create-release": "npm test && sh ./scripts/release", |
| 14 | + "publish-release": "npm test && sh ./scripts/publish", |
| 15 | + "lint": "eslint src" |
| 16 | + }, |
| 17 | + "repository": { |
| 18 | + "type": "git", |
| 19 | + "url": "git+ssh://git@github.com/JimLiu/bbcode-to-react.git" |
| 20 | + }, |
| 21 | + "files": [ |
| 22 | + "LICENSE", |
| 23 | + "README.md", |
| 24 | + "CHANGELOG.md", |
| 25 | + "lib", |
| 26 | + "dist" |
| 27 | + ], |
| 28 | + "keywords": [ |
| 29 | + "bbcode", |
| 30 | + "react", |
| 31 | + "bbcode parser" |
| 32 | + ], |
| 33 | + "contributors": [ |
| 34 | + "Junmin Liu (https://github.com/jimliu)" |
| 35 | + ], |
| 36 | + "license": "MIT", |
| 37 | + "bugs": { |
| 38 | + "url": "https://github.com/JimLiu/bbcode-to-react/issues" |
| 39 | + }, |
| 40 | + "homepage": "https://github.com/JimLiu/bbcode-to-react#readme", |
| 41 | + "dependencies": {}, |
| 42 | + "peerDependencies": { |
| 43 | + "react": "^0.14.0 || ^15.0.0" |
| 44 | + }, |
| 45 | + "devDependencies": { |
| 46 | + "babel-cli": "^6.14.0", |
| 47 | + "babel-loader": "^6.2.2", |
| 48 | + "babel-preset-es2015": "^6.14.0", |
| 49 | + "babel-preset-react": "^6.11.1", |
| 50 | + "babel-preset-react-app": "^0.2.1", |
| 51 | + "babel-preset-stage-0": "^6.5.0", |
| 52 | + "bootstrap": "^4.0.0-alpha.5", |
| 53 | + "clean-webpack-plugin": "^0.1.8", |
| 54 | + "conventional-changelog-cli": "^1.1.1", |
| 55 | + "conventional-recommended-bump": "^0.3.0", |
| 56 | + "copy-webpack-plugin": "^3.0.1", |
| 57 | + "coveralls": "^2.11.12", |
| 58 | + "cross-env": "^2.0.0", |
| 59 | + "enzyme": "^2.4.1", |
| 60 | + "eslint": "^3.2.2", |
| 61 | + "eslint-config-airbnb": "^10.0.0", |
| 62 | + "eslint-plugin-import": "^1.12.0", |
| 63 | + "eslint-plugin-jsx-a11y": "^2.0.1", |
| 64 | + "eslint-plugin-react": "^6.0.0", |
| 65 | + "eslint-plugin-standard": "^2.0.0", |
| 66 | + "json-loader": "^0.5.4", |
| 67 | + "react": "^15.3.0", |
| 68 | + "react-dom": "^15.3.0", |
| 69 | + "react-prism": "4.0.0", |
| 70 | + "react-router": "^2.6.1", |
| 71 | + "react-scripts": "^0.7.0", |
| 72 | + "webpack": "^1.12.13" |
| 73 | + } |
| 74 | +} |
0 commit comments