react-redux-boilerplate-scripts
Version:
react-boilerplate-app-scripts
73 lines (72 loc) • 2 kB
JSON
{
"name": "history",
"version": "3.3.0",
"description": "Manage browser history with JavaScript",
"repository": "ReactTraining/history",
"author": "Michael Jackson",
"license": "MIT",
"main": "lib",
"files": [
"lib",
"umd"
],
"scripts": {
"start": "webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js",
"build-lib": "rimraf lib && babel ./modules -d lib --ignore '__tests__'",
"build-umd": "webpack modules/index.js umd/history.js",
"build-min": "webpack -p modules/index.js umd/history.min.js",
"build": "node ./scripts/build.js",
"release": "node ./scripts/release.js",
"prepublish": "node ./scripts/build.js",
"test": "npm run lint && karma start",
"lint": "eslint modules"
},
"dependencies": {
"invariant": "^2.2.1",
"query-string": "^4.2.2",
"warning": "^3.0.0",
"loose-envify": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^3.3.0",
"eslint-plugin-import": "^1.8.1",
"expect": "^1.20.1",
"gzip-size": "^3.0.0",
"in-publish": "^2.0.0",
"karma": "^1.2.0",
"karma-browserstack-launcher": "^1.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.2",
"pretty-bytes": "^4.0.2",
"readline-sync": "^1.4.4",
"rimraf": "^2.5.2",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"tags": [
"history",
"location"
],
"keywords": [
"history",
"location"
]
}