orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
52 lines (51 loc) • 1.25 kB
JSON
{
"name": "find-babel-config",
"version": "1.0.1",
"main": "lib/index.js",
"description": "Find the closest babel config based on a directory",
"repository": {
"type": "git",
"url": "https://github.com/tleunen/find-babel-config.git"
},
"author": "Tommy Leunen <tommy.leunen@gmail.com> (http://tommyleunen.com)",
"license": "MIT",
"keywords": [
"babel",
"config",
"loader",
"finder",
"babelrc"
],
"dependencies": {
"json5": "^0.5.0",
"path-exists": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"eslint": "^3.3.0",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.13.0",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"standard-version": "^2.4.0"
},
"scripts": {
"lint": "eslint src test",
"pretest": "npm run lint",
"test": "nyc npm run test:suite",
"test:watch": "npm run test:suite -- -w",
"test:suite": "mocha --require babel-register",
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"release": "standard-version"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}