-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "html-query-plan",
"version": "2.6.1",
"description": "Display SQL Server Execution Plans in HTML",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"karma": "^3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-typescript-preprocessor2": "^1.2.1",
"karma-webpack": "^4.0.0-rc.2",
"mocha": "^5.1.1",
"raw-loader": "^0.5.1",
"svgjs": "^2.6.2",
"ts-loader": "^5.0",
"ts-node": "^7.0",
"typescript": "^3.0",
"webpack": "^4.0",
"webpack-cli": "^3.1.1"
},
"scripts": {
"webpack": "webpack",
"watch:webpack": "webpack --watch",
"test": "karma start karma.config.js --singleRun",
"watch:test": "karma start karma.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustinPealing/html-query-plan.git"
},
"author": "Justin Pealing",
"license": "MIT",
"main": "dist/qp.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/JustinPealing/html-query-plan/issues"
},
"homepage": "https://github.com/JustinPealing/html-query-plan#readme"
}