-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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
61
62
63
64
65
{
"name": "powerbi-router",
"version": "0.1.5",
"description": "Router for Microsoft Power BI. Given an http method and url pattern call the matching handler with the request and response object. Syntax matches common libraries such as express and restify.",
"main": "dist/router.js",
"typings": "dist/router.d.ts",
"scripts": {
"build": "gulp build",
"test": "gulp test",
"postinstall": "typings install",
"gulp": "gulp",
"typings": "typings"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/powerbi-router"
},
"files": [
"dist"
],
"keywords": [
"microsoft",
"powerbi",
"router"
],
"author": "Microsoft Power BI Team",
"license": "MIT",
"devDependencies": {
"del": "^2.2.0",
"gulp": "^4.0.2",
"gulp-gh-pages": "^0.5.4",
"gulp-header": "^1.8.7",
"gulp-help-four": "^0.2.3",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-tslint": "^6.1.1",
"gulp-typedoc": "^2.0.0",
"gulp-uglify": "^1.5.3",
"gulp4-run-sequence": "^1.0.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"moment": "^2.14.1",
"phantomjs-prebuilt": "^2.1.7",
"ts-loader": "^0.8.2",
"tslint": "^3.15.0",
"typedoc": "^0.4.4",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"webpack-stream": "^3.2.0",
"yargs": "^4.7.1"
},
"dependencies": {
"es6-promise": "^3.2.1",
"route-recognizer": "^0.1.11"
},
"publishConfig": {
"tag": "beta"
}
}