-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.3 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.3 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "powerbi-models",
"version": "2.0.1",
"description": "Contains JavaScript & TypeScript object models for Microsoft Power BI JavaScript SDK. For each model there is a TypeScript interface, and a validation function to ensure and object is valid.",
"main": "dist/models.js",
"typings": "dist/models.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"preinstall": "npx force-resolutions",
"build": "gulp build",
"test": "gulp test",
"gulp": "gulp",
"tests": "npm test -- --chrome --watch --debug"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/powerbi-models"
},
"resolutions": {
"glob-parent": "^6.0.2",
"micromatch": "^4.0.5",
"braces": "^3.0.2"
},
"keywords": [
"Microsoft",
"PowerBI",
"message",
"validation",
"json"
],
"author": "Microsoft PowerBI Team",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^3.5.5",
"@types/karma-jasmine": "0.0.31",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"del": "^2.2.1",
"eslint": "^7.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.7",
"eslint-plugin-prefer-arrow": "^1.2.2",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-header": "^1.8.7",
"gulp-help-four": "^0.2.3",
"gulp-rename": "^1.2.2",
"gulp-typedoc": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"gulp4-run-sequence": "^1.0.0",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-jasmine": "^0.3.8",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-spec-reporter": "0.0.32",
"karma-junit-reporter": "^2.0.1",
"ts-loader": "^6.2.1",
"typedoc": "^0.22.14",
"typescript": "~4.6.0",
"webpack": "^5.71.0",
"webpack-stream": "^7.0.0",
"yargs": "^17.4.1"
},
"publishConfig": {
"tag": "beta"
},
"dependencies": {}
}