react-font-style
Version:
React font style editor
129 lines (128 loc) • 3.84 kB
JSON
{
"name": "react-font-style",
"version": "0.0.11",
"description": "React font style editor",
"main": "lib/",
"scripts": {
"start": "node devServer.js",
"build": "rimraf ./lib && cross-env BABEL_ENV=production babel src -d lib --copy-files",
"lint": "eslint src",
"test": "jest",
"test:watch": "NODE_ENV=test npm test -- --watch",
"flow": "flow check",
"flow:watch": "flow-watch",
"gh-pages": "rimraf _gh-pages && npm run gh-pages:build && npm run gh-pages:publish",
"gh-pages:build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"gh-pages:publish": "git-directory-deploy --directory _gh-pages --branch gh-pages",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctxhou/react-font-style.git"
},
"keywords": [
"react",
"font",
"font-style"
],
"files": [
"docs",
"lib",
"src",
"flow-typed"
],
"author": "ctxhou",
"license": "MIT",
"bugs": {
"url": "https://github.com/ctxhou/react-font-style/issues"
},
"homepage": "https://github.com/ctxhou/react-font-style#readme",
"dependencies": {
"classnames": "^2.2.5",
"obj-has-obj": "^0.0.2",
"prop-types": "^15.6.0",
"react-color": "^2.14.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-flow-react-proptypes": "^9.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.11.6",
"compression-webpack-plugin": "^1.0.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.11",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.0.0",
"eslint-config-google": "^0.4.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-flowtype-errors": "^3.3.6",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.1",
"flow-bin": "^0.58.0",
"flow-watch": "^1.1.1",
"git-directory-deploy": "^1.5.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-styled-components": "^4.9.0",
"noop3": "^999.999.999",
"precommit-hook-eslint": "^3.0.0",
"prettier": "^1.7.4",
"react": "^16.0.0",
"react-content-loader": "^3.1.1",
"react-dom": "^16.0.0",
"react-icons": "^2.2.7",
"react-select": "^1.0.0-rc.10",
"rimraf": "^2.6.2",
"rollup-plugin-flow": "^1.1.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^3.3.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2"
},
"peerDependencies": {
"react": ">= 15.0.0 < 17.0.0-0"
},
"jest": {
"setupFiles": [
"./test/shim",
"./test/enzyme-setup"
],
"roots": [
"<rootDir>/test/"
],
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"pre-commit": [
"lint",
"flow"
]
}