mirror of
https://github.com/gregberge/loadable-components.git
synced 2026-01-25 15:24:15 +00:00
60 lines
1.8 KiB
JSON
60 lines
1.8 KiB
JSON
{
|
|
"name": "loadable-components",
|
|
"version": "0.2.0",
|
|
"description": "React code splitting made easy.",
|
|
"main": "index.js",
|
|
"repository": "git@github.com:smooth-code/loadable-components.git",
|
|
"author": "Greg Bergé <berge.greg@gmail.com>",
|
|
"keywords": [
|
|
"react",
|
|
"ssr",
|
|
"webpack",
|
|
"code-splitting",
|
|
"react-router",
|
|
"server-side-rendering",
|
|
"dynamic-import",
|
|
"react-loadable",
|
|
"react-async-components"
|
|
],
|
|
"license": "MIT",
|
|
"jest": {
|
|
"rootDir": "src",
|
|
"coverageDirectory": "./coverage/"
|
|
},
|
|
"scripts": {
|
|
"build": "rm -rf lib/ && NODE_ENV=production babel src -d lib && cp package.json lib/ && cp README.md lib/",
|
|
"format": "prettier --write --no-semi --single-quote --trailing-comma all \"src/**/*.js\"",
|
|
"release": "mversion `conventional-recommended-bump -p angular` -m",
|
|
"test": "eslint . && jest --runInBand --coverage && codecov"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^15.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.24.1",
|
|
"babel-eslint": "^7.2.3",
|
|
"babel-plugin-dynamic-import-node": "^1.0.2",
|
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
"babel-plugin-transform-object-rest-spread": "^6.23.0",
|
|
"babel-preset-env": "^1.6.0",
|
|
"babel-preset-react": "^6.24.1",
|
|
"codecov": "^2.2.0",
|
|
"conventional-github-releaser": "^1.1.12",
|
|
"conventional-recommended-bump": "^1.0.1",
|
|
"enzyme": "^2.9.1",
|
|
"eslint": "^4.3.0",
|
|
"eslint-config-airbnb": "^15.1.0",
|
|
"eslint-config-prettier": "^2.3.0",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"eslint-plugin-jsx-a11y": "^5.0.1",
|
|
"eslint-plugin-react": "^7.0.1",
|
|
"jest": "^20.0.4",
|
|
"mversion": "^1.10.1",
|
|
"prettier": "^1.5.3",
|
|
"react": "^15.6.1",
|
|
"react-dom": "^15.6.1",
|
|
"react-router": "^4.1.2",
|
|
"react-test-renderer": "^15.6.1"
|
|
}
|
|
}
|