UNPKG

react-feature-toggles

Version:

Feature toggle framework for react - down with feature branches

66 lines (65 loc) 1.98 kB
{ "name": "react-feature-toggles", "version": "3.0.3", "description": "Feature toggle framework for react - down with feature branches", "main": "lib/", "scripts": { "ci-build": "npm install && npm run lint && npm run test && npm run build", "lint": "./node_modules/.bin/eslint src test --ext .jsx,.js", "unit": "./node_modules/.bin/mocha test/**/*.js* --recursive --require babel-register --timeout 5000", "test": "npm run lint && npm run unit", "build": "rm -rf lib && ./node_modules/.bin/babel src/ -d lib/", "build-example": "./node_modules/.bin/webpack --config webpack.example.config.babel.js", "prepare": "npm install babel-cli babel-preset-es2015 babel-preset-react babel-register && npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/RosyTucker/react-feature-toggles.git" }, "files": [ "lib", "src" ], "keywords": [ "react", "feature", "toggle", "toggles" ], "author": "Rose Tucker", "license": "MIT", "bugs": { "url": "https://github.com/RosyTucker/react-feature-toggles/issues" }, "homepage": "https://github.com/RosyTucker/react-feature-toggles#readme", "peerDependencies": { "react": "16.x", "react-dom": "16.x" }, "dependencies": { "babel-preset-es2015": "^6.24.1", "prop-types": "^15.6.1" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "6.26.3", "babel-loader": "7.1.4", "babel-preset-env": "1.6.1", "babel-preset-react": "^6.24.1", "babel-register": "^6.26.0", "chai": "4.1.2", "enzyme": "3.3.0", "enzyme-adapter-react-16": "^1.1.1", "eslint": "4.19.1", "eslint-config-airbnb": "16.1.0", "eslint-plugin-import": "2.11.0", "eslint-plugin-jsx-a11y": "6.0.3", "eslint-plugin-react": "7.7.0", "jsdomify": "3.1.1", "mocha": "5.1.1", "react": "16.3.2", "react-dom": "16.3.2", "webpack": "4.6.0", "yargs": "11.0.0" } }