62 строки
2.4 KiB
JSON
62 строки
2.4 KiB
JSON
{
|
|
"name": "@microsoft/powerquery-formatter",
|
|
"version": "0.3.14",
|
|
"author": "Microsoft",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": ".\\node_modules\\.bin\\tsc",
|
|
"watch": ".\\node_modules\\.bin\\tsc -b -watch",
|
|
"test": "mocha --reporter mocha-multi-reporters --reporter-options configFile=src/test/mochaConfig.json -r ts-node/register src/test/**/*.ts",
|
|
"script:recursiveDirectoryFormat": "npx ts-node src/scripts/recursiveDirectoryFormat.ts",
|
|
"link:start": "npm link && npm uninstall @microsoft/powerquery-parser && git clean -xdf && npm install && npm link @microsoft/powerquery-parser",
|
|
"link:stop": "npm unlink @microsoft/powerquery-parser && git clean -xdf && npm install && npm install @microsoft/powerquery-parser@latest --save-exact",
|
|
"lint": "eslint src --ext ts",
|
|
"prepublishOnly": "git clean -xdf && npm install-clean && npm run lint && npm run build && npm run test"
|
|
},
|
|
"homepage": "https://github.com/microsoft/powerquery-formatter#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/microsoft/powerquery-formatter.git"
|
|
},
|
|
"issues": {
|
|
"url": "https://github.com/microsoft/powerquery-formatter/issues"
|
|
},
|
|
"description": "A source code formatter for the Power Query/M formula language.",
|
|
"main": "lib/powerquery-formatter/index.js",
|
|
"types": "lib/powerquery-formatter/index.d.ts",
|
|
"engines": {
|
|
"node": ">=16.13.1"
|
|
},
|
|
"keywords": [
|
|
"power query",
|
|
"power bi"
|
|
],
|
|
"files": [
|
|
"lib/powerquery-formatter/**/*"
|
|
],
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.0",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^17.0.5",
|
|
"@typescript-eslint/eslint-plugin": "5.8.1",
|
|
"@typescript-eslint/parser": "5.8.1",
|
|
"chai": "^4.3.4",
|
|
"eslint": "8.5.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-prettier": "4.0.0",
|
|
"eslint-plugin-promise": "6.0.0",
|
|
"eslint-plugin-security": "1.4.0",
|
|
"mocha": "^9.1.3",
|
|
"mocha-junit-reporter": "^2.0.2",
|
|
"mocha-multi-reporters": "^1.5.1",
|
|
"prettier": "^2.5.1",
|
|
"ts-loader": "^9.2.6",
|
|
"ts-node": "^10.4.0",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "^4.5.4"
|
|
},
|
|
"dependencies": {
|
|
"@microsoft/powerquery-parser": "0.15.10"
|
|
}
|
|
}
|