@syntest/analysis-javascript
Version:
SynTest CFG JavaScript is a library for generating control flow graphs for the JavaScript language
69 lines (68 loc) • 2.3 kB
JSON
{
"name": "@syntest/analysis-javascript",
"version": "0.1.0",
"description": "SynTest CFG JavaScript is a library for generating control flow graphs for the JavaScript language",
"keywords": [
"syntest",
"control-flow-graph"
],
"homepage": "https://www.syntest.org",
"bugs": {
"url": "https://github.com/syntest-framework/syntest-javascript/issues"
},
"license": "Apache-2.0",
"contributors": [
"Annibale Panichella",
"Mitchell Olsthoorn",
"Dimitri Stallenberg"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/lib",
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/index.js",
"dist/index.js.map",
"NOTICE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/syntest-framework/syntest-javascript.git"
},
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"clean": "rm -rf .nyc_output dist node_modules",
"clean:dist": "rm -rf dist",
"format": "prettier --config ../../.prettierrc.json --ignore-path ../../.prettierignore --write .",
"format:check": "prettier --config ../../.prettierrc.json --ignore-path ../../.prettierignore --check .",
"lint": "eslint --config ../../.eslintrc.json --ignore-path ../../.eslintignore .",
"lint:fix": "eslint --config ../../.eslintrc.json --ignore-path ../../.eslintignore . --fix",
"test": "mocha --config ../../.mocharc.json",
"test:coverage": "nyc --reporter=text --reporter=html --reporter=lcov mocha --config ../../.mocharc.json",
"test:coverage:ci": "nyc --reporter=lcovonly mocha --config ../../.mocharc.json --reporter json --reporter-option output=test-results.json",
"test:watch": "mocha --config ../../.mocharc.json --watch"
},
"dependencies": {
"@babel/core": "7.20.12",
"@babel/traverse": "7.20.12",
"@syntest/analysis": "^0.2.0",
"@syntest/ast-visitor-javascript": "*",
"@syntest/cfg": "^0.4.0",
"@syntest/logging": "^0.1.1",
"@syntest/prng": "^0.1.1",
"@syntest/search": "^0.4.0"
},
"engines": {
"node": ">=10.24.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/types": "^7.21.5"
},
"gitHead": "cc4c53310eebbd4925d8f97aaee74f0b9a36d954"
}