Package Exports
- typhonjs-escomplex-project
- typhonjs-escomplex-project/dist/ESComplexProject
- typhonjs-escomplex-project/dist/ESComplexProject.js
- typhonjs-escomplex-project/src/ESComplexProject
- typhonjs-escomplex-project/src/ESComplexProject.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (typhonjs-escomplex-project) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme

Provides project oriented AST processing for typhonjs-escomplex complexity reports. The following JS AST generators are supported / tested: acorn, babel parser, babylon, espree, esprima. Any compliant JS parser that supports Babylon or ESTree AST should work as well.
More information forthcoming. This NPM module can be installed as a dependency in package.json as follows:
"dependencies": {
  "typhonjs-escomplex-project": "^0.1.0"
}An ES6 example follows:
import escomplexProject from 'typhonjs-escomplex-project';
const modules =
[
   { ast: <some parsed AST>, srcPath: 'a/file/path/1' },
   { ast: <some parsed AST>, srcPath: 'a/file/path/2' }
]);
const results = escomplexProject.analyze(modules);A CJS example follows:
var escomplexProject = require('typhonjs-escomplex-project');
var modules =
[
   { ast: <some parsed AST>, srcPath: 'a/file/path/1' },
   { ast: <some parsed AST>, srcPath: 'a/file/path/2' }
]);
var results = escomplexProject.analyze(modules);