code-inspector
Version:
Static analysis for your code
83 lines (82 loc) • 2.43 kB
JSON
{
"name": "code-inspector",
"version": "1.16.0",
"main": "node/code-inspector.js",
"description": "Static analysis for your code",
"devDependencies": {
"@babel/core": "7.5.0",
"@babel/parser": "7.8.8",
"@babel/plugin-transform-regenerator": "7.4.5",
"@babel/plugin-transform-runtime": "7.5.0",
"@babel/preset-env": "7.5.0",
"@babel/preset-typescript": "7.8.3",
"@babel/runtime": "7.5.0",
"@babel/traverse": "7.9.0",
"@babel/types": "7.9.0",
"@jest/console": "25.1.0",
"@types/jest": "25.1.4",
"@types/lodash": "4.14.149",
"@types/node": "13.9.1",
"@types/webpack-env": "1.15.1",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"ast-types": "0.13.2",
"babel-eslint": "9.0.0",
"babel-jest": "25.1.0",
"babel-loader": "8.0.4",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "4.3.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "5.0.5",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "1.7.0",
"jest": "25.1.0",
"prettier": "1.19.1",
"regenerator-runtime": "0.13.2",
"terser-webpack-plugin": "1.2.3",
"ts-loader": "6.2.1",
"typescript": "3.7.5",
"webpack": "4.41.6",
"webpack-cli": "3.1.2",
"clipboardy": "2.3.0"
},
"scripts": {
"build": "webpack --config ./webpack.browser.js --mode production && webpack --config ./webpack.node.js --mode production",
"dev": "webpack --config ./webpack.browser.js --watch --mode development",
"test": "./node_modules/.bin/jest ./src/__tests__/*.spec.ts",
"test-watch": "./node_modules/.bin/jest ./src/__tests__/*.spec.ts --watch",
"release": "yarn test && yarn build",
"generate": "node ./scripts/generate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krasimir/code-inspector.git"
},
"keywords": [
"static",
"analysis",
"code",
"ast",
"scope",
"inspector",
"metaprogramming"
],
"author": "Krasimir Tsonev",
"license": "MIT",
"jest": {
"setupFilesAfterEnv": [
"./jest/index.ts"
],
"verbose": false,
"globals": {},
"watchPathIgnorePatterns": [
"<rootDir>/demo/"
]
},
"dependencies": {
}
}