powerquery-formatter/package.json

62 строки
2.4 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

2020-05-04 10:42:55 +03:00
{
"name": "@microsoft/powerquery-formatter",
2024-04-05 19:20:17 +03:00
"version": "0.3.14",
2020-05-04 10:42:55 +03:00
"author": "Microsoft",
"license": "MIT",
"scripts": {
"build": ".\\node_modules\\.bin\\tsc",
"watch": ".\\node_modules\\.bin\\tsc -b -watch",
2020-05-04 10:47:25 +03:00
"test": "mocha --reporter mocha-multi-reporters --reporter-options configFile=src/test/mochaConfig.json -r ts-node/register src/test/**/*.ts",
2023-10-04 19:53:38 +03:00
"script:recursiveDirectoryFormat": "npx ts-node src/scripts/recursiveDirectoryFormat.ts",
2023-06-26 17:32:56 +03:00
"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",
2021-12-29 20:20:04 +03:00
"lint": "eslint src --ext ts",
2022-04-29 17:40:41 +03:00
"prepublishOnly": "git clean -xdf && npm install-clean && npm run lint && npm run build && npm run test"
2020-05-04 10:42:55 +03:00
},
"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.",
2021-01-19 22:33:19 +03:00
"main": "lib/powerquery-formatter/index.js",
"types": "lib/powerquery-formatter/index.d.ts",
2022-04-29 17:40:41 +03:00
"engines": {
2022-11-17 00:04:41 +03:00
"node": ">=16.13.1"
2022-04-29 17:40:41 +03:00
},
2020-05-04 10:42:55 +03:00
"keywords": [
"power query",
"power bi"
],
2023-06-26 17:32:56 +03:00
"files": [
"lib/powerquery-formatter/**/*"
],
2020-05-04 10:42:55 +03:00
"devDependencies": {
2021-12-29 20:20:04 +03:00
"@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",
2022-03-02 18:33:23 +03:00
"eslint-plugin-promise": "6.0.0",
2021-12-29 20:20:04 +03:00
"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",
2023-06-23 06:19:24 +03:00
"tslint": "^6.1.3",
2021-12-29 20:20:04 +03:00
"typescript": "^4.5.4"
2020-05-04 10:42:55 +03:00
},
"dependencies": {
2024-04-05 19:20:17 +03:00
"@microsoft/powerquery-parser": "0.15.10"
2023-06-26 17:32:56 +03:00
}
2023-07-04 18:43:43 +03:00
}