mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
72 lines
1.8 KiB
JSON
72 lines
1.8 KiB
JSON
{
|
|
"name": "jsx-ast-utils",
|
|
"version": "3.2.0",
|
|
"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)",
|
|
"coveralls": "cat ./reports/lcov.info | coveralls",
|
|
"lint": "eslint .",
|
|
"pretest": "npm run lint",
|
|
"test": "npm run tests-only --",
|
|
"tests-only": "jest --coverage",
|
|
"test:watch": "npm run tests-only -- --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.10",
|
|
"@babel/parser": "^7.12.11",
|
|
"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",
|
|
"coveralls": "^3.1.0",
|
|
"eslint": "^7.15.0",
|
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"flow-parser": "^0.126.1",
|
|
"in-publish": "^2.0.1",
|
|
"jest": "^20.0.4",
|
|
"jest-cli": "^20.0.4",
|
|
"object.entries": "^1.1.3",
|
|
"object.fromentries": "^2.0.3",
|
|
"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/evcohen/jsx-ast-utils"
|
|
},
|
|
"license": "MIT",
|
|
"jest": {
|
|
"coverageReporters": [
|
|
"lcov"
|
|
],
|
|
"coverageDirectory": "reports",
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"helper.js"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"array-includes": "^3.1.2",
|
|
"object.assign": "^4.1.2"
|
|
}
|
|
}
|