1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "name": "jsx-ast-utils",
- "version": "3.2.1",
- "description": "AST utility module for statically analyzing JSX",
- "main": "lib/index.js",
- "scripts": {
- "prebuild": "rimraf lib",
- "build": "babel src --out-dir lib",
- "prepublish": "not-in-publish || (safe-publish-latest && npm test && npm run build)",
- "prelint": "npm run build",
- "lint": "eslint .",
- "pretest": "npm run lint",
- "test": "npm run tests-only --",
- "posttest": "aud --production",
- "tests-only": "jest --coverage",
- "test:watch": "npm run tests-only -- --watch"
- },
- "devDependencies": {
- "@babel/core": "^7.15.5",
- "@babel/parser": "^7.15.6",
- "aud": "^1.1.5",
- "babel-cli": "^6.26.0",
- "babel-core": "^6.26.3",
- "babel-eslint": "^10.1.0",
- "babel-jest": "^20.0.3",
- "babel-plugin-transform-object-rest-spread": "^6.26.0",
- "babel-plugin-transform-replace-object-assign": "^1.0.0",
- "babel-polyfill": "^6.26.0",
- "babel-preset-env": "^1.7.0",
- "babylon": "^6.18.0",
- "eslint": "^7.32.0",
- "eslint-config-airbnb-base": "^14.2.1",
- "eslint-plugin-import": "^2.24.2",
- "flow-parser": "^0.126.1",
- "in-publish": "^2.0.1",
- "jest": "^20.0.4",
- "jest-cli": "^20.0.4",
- "object.entries": "^1.1.4",
- "object.fromentries": "^2.0.4",
- "rimraf": "^2.7.1",
- "safe-publish-latest": "^1.1.4"
- },
- "engines": {
- "node": ">=4.0"
- },
- "keywords": [
- "jsx",
- "ast",
- "lint",
- "eslint"
- ],
- "author": "Ethan Cohen",
- "repository": {
- "type": "git",
- "url": "https://github.com/jsx-eslint/jsx-ast-utils"
- },
- "license": "MIT",
- "jest": {
- "coverageReporters": [
- "lcov",
- "html",
- "json"
- ],
- "coverageDirectory": "coverage",
- "testPathIgnorePatterns": [
- "/node_modules/",
- "helper.js"
- ]
- },
- "dependencies": {
- "array-includes": "^3.1.3",
- "object.assign": "^4.1.2"
- }
- }
|