-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
60 lines (60 loc) · 2.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@microsoft/powerquery-parser",
"version": "0.15.11",
"description": "A parser for the Power Query/M formula language.",
"author": "Microsoft",
"license": "MIT",
"keywords": [
"power query",
"power bi"
],
"scripts": {
"build": "node_modules\\.bin\\tsc",
"test": "mocha --reporter mocha-multi-reporters --reporter-options configFile=src/test/mochaConfig.json -r ts-node/register src/test/libraryTest/**/*.ts",
"test:resources": "mocha --reporter mocha-multi-reporters --reporter-options configFile=src/test/mochaConfig.json -r ts-node/register src/test/resourceTest/**/*.ts",
"script:benchmark": "npx ts-node src/test/scripts/createBenchmark.ts",
"script:nodeDump": "npx ts-node src/test/scripts/createNodeDump.ts",
"lint": "eslint src --ext ts",
"prepublishOnly": "git clean -xdf && npm install-clean && npm run lint && npm run build && npm run test && npm run test:resources"
},
"homepage": "https://github.com/microsoft/powerquery-parser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/powerquery-parser.git"
},
"bugs": {
"url": "https://github.com/microsoft/powerquery-parser/issues"
},
"main": "lib/powerquery-parser/index.js",
"types": "lib/powerquery-parser/index.d.ts",
"engines": {
"node": ">=16.13.1"
},
"dependencies": {
"grapheme-splitter": "^1.0.4",
"performance-now": "^2.1.0"
},
"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": "^11.1.0",
"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",
"typescript": "^4.5.4"
},
"files": [
"lib/powerquery-parser/**/*"
]
}