orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
60 lines (59 loc) • 1.44 kB
JSON
{
"name": "jsx-ast-utils",
"version": "1.3.3",
"description": "AST utility module for statically analyzing JSX",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"prepublish": "npm run lint && npm run test && npm run build",
"coveralls": "cat ./reports/lcov.info | coveralls",
"lint": "eslint --config .eslintrc .",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test": "jest --coverage",
"test:watch": "npm test -- --watch"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.14.0",
"coveralls": "^2.11.8",
"eslint": "^3.0.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"jest": "^16.0.1",
"rimraf": "^2.5.2"
},
"engines": {
"node": ">=4.0"
},
"keywords": [
"jsx",
"ast",
"lint",
"eslint"
],
"author": "Ethan Cohen",
"repository": {
"type": "git",
"url": "https://github.com/evcohen/jsx-ast-utils"
},
"license": "MIT",
"dependencies": {
"acorn-jsx": "^3.0.1",
"object-assign": "^4.1.0"
},
"jest": {
"coverageReporters": [
"lcov"
],
"coverageDirectory": "reports",
"testPathIgnorePatterns": [
"/node_modules/",
"helper.js"
]
}
}