84 lines
2.8 KiB
JSON
84 lines
2.8 KiB
JSON
{
|
|
"name": "providence-analytics",
|
|
"version": "0.15.0",
|
|
"description": "Providence is the 'All Seeing Eye' that measures effectivity and popularity of software. Release management will become highly efficient due to an accurate impact analysis of (breaking) changes",
|
|
"license": "MIT",
|
|
"author": "ing-bank",
|
|
"homepage": "https://github.com/ing-bank/lion/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ing-bank/lion.git",
|
|
"directory": "packages-node/providence-analytics"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.js",
|
|
"./cli.js": "./src/cli/index.js",
|
|
"./utils.js": "./src/program/utils/index.js",
|
|
"./analyzers.js": "./src/program/analyzers/index.js",
|
|
"./docs/*": "./docs/*"
|
|
},
|
|
"main": "./src/index.js",
|
|
"bin": {
|
|
"providence": "./src/cli/index.js"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"dashboard": "node ./src/dashboard/server.js --run-server --serve-from-package-root",
|
|
"postinstall": "npx patch-package",
|
|
"match-lion-imports": "npm run providence -- analyze match-imports --search-target-collection @lion-targets --reference-collection @lion-references --measure-perf --skip-check-match-compatibility",
|
|
"providence": "node --max-old-space-size=8192 ./src/cli/index.js",
|
|
"publish-docs": "node ../../packages-node/publish-docs/src/cli.js --github-url https://github.com/ing-bank/lion/ --git-root-dir ../../",
|
|
"prepublishOnly": "npm run publish-docs",
|
|
"test:node": "npm run test:node:unit && npm run test:node:e2e",
|
|
"test:node:e2e": "mocha './test-node/**/*.e2e.js' --timeout 60000",
|
|
"test:node:unit": "mocha './test-node/**/*.test.js'"
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "^7.21.4",
|
|
"@babel/parser": "^7.21.4",
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@babel/plugin-syntax-export-default-from": "^7.18.6",
|
|
"@babel/plugin-syntax-import-assertions": "^7.20.0",
|
|
"@babel/register": "^7.21.0",
|
|
"@babel/traverse": "^7.21.4",
|
|
"@babel/types": "^7.21.4",
|
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
"@swc/core": "^1.3.46",
|
|
"@web/dev-server": "^0.1.38",
|
|
"anymatch": "^3.1.3",
|
|
"commander": "^2.20.3",
|
|
"glob": "^8.1.0",
|
|
"inquirer": "^9.1.5",
|
|
"is-negated-glob": "^1.0.0",
|
|
"lit-element": "~3.3.1",
|
|
"parse5": "^7.1.2",
|
|
"read-package-tree": "5.3.1",
|
|
"semver": "^7.3.8",
|
|
"swc-to-babel": "^1.26.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.4",
|
|
"@types/inquirer": "^9.0.3",
|
|
"@types/mocha": "^10.0.1",
|
|
"@web/dev-server-core": "^0.4.0",
|
|
"mock-fs": "^5.2.0",
|
|
"mock-require": "^3.0.3"
|
|
},
|
|
"keywords": [
|
|
"analysis",
|
|
"impact",
|
|
"insight",
|
|
"metrics",
|
|
"providence",
|
|
"quality",
|
|
"release management",
|
|
"semver",
|
|
"software"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|