code-graph-generator
Version:
Generate Json Object of code that can be used to generate code-graphs for JavaScript/TypeScript/Range projects
69 lines • 1.81 kB
JSON
{
"name": "code-graph-generator",
"version": "1.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"code-graph-generator": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"dev": "ts-node src/index.ts",
"lint": "eslint src --ext .ts",
"example": "ts-node examples/basic.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"code-graph",
"static-analysis",
"code-visualization",
"typescript",
"javascript",
"ast",
"react-codegraph",
"High level code visualization"
],
"author": "Aman Singh , amansinghbiuri@gmail.com",
"license": "MIT",
"description": "Generate Json Object of code that can be used to generate code-graphs for JavaScript/TypeScript/Range projects",
"repository": {
"type": "git",
"url": "git+https://github.com/Aman-s12345/code-graph-generator.git"
},
"bugs": {
"url": "https://github.com/Aman-s12345/code-graph-generator.git/issues"
},
"homepage": "https://github.com/Aman-s12345/code-graph-generator.git#readme",
"dependencies": {
"@babel/parser": "^7.22.5",
"@babel/traverse": "^7.22.5",
"@babel/types": "^7.22.5",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/typescript-estree": "^6.0.0",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"glob": "^10.4.5",
"micromatch": "^4.0.5",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
}
}