forked from tensorflow/tensorboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "tensorboard",
"version": "0.0.0-unused",
"description": "TensorFlow's visualization toolkit",
"private": true,
"directories": {
"doc": "docs"
},
"scripts": {
"postinstall": "ngcc -p main es2015",
"build": "bazel build //...",
"test": "ibazel test //...",
"lint": "prettier --check 'tensorboard/**/*.'{css,html,js,ts,scss} .github/**/*.yml",
"fix-lint": "prettier --write 'tensorboard/**/*.'{css,html,js,ts,scss} .github/**/*.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tensorflow/tensorboard.git"
},
"keywords": [
"ml",
"visualization"
],
"author": "TensorFlow authors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tensorflow/tensorboard/issues"
},
"homepage": "https://github.com/tensorflow/tensorboard#readme",
"devDependencies": {
"@angular/bazel": "^9.0.0",
"@angular/cli": "^9.1.2",
"@angular/compiler": "^9.0.0",
"@angular/compiler-cli": "^9.0.0",
"@bazel/bazel": "2.1",
"@bazel/ibazel": "^0.12.4",
"@bazel/jasmine": "^1.6.0",
"@bazel/karma": "^1.6.0",
"@bazel/protractor": "^1.6.0",
"@bazel/rollup": "^1.6.0",
"@bazel/terser": "^1.6.0",
"@bazel/typescript": "^1.6.0",
"@types/chai": "^4.2.7",
"@types/jasmine": "^3.5.10",
"@types/node": "^13.13.1",
"@types/requirejs": "^2.1.31",
"@types/sinon": "^7.5.2",
"chai": "^4.2.0",
"jasmine-core": "^3.5.0",
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.1.0",
"karma-requirejs": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"prettier": "1.18.2",
"requirejs": "^2.3.6",
"rollup": "^2.7.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"sinon": "^7.4.1",
"terser": "^4.6.3",
"tslib": "^1.10.0",
"typescript": "3.8.3"
},
"dependencies": {
"@angular/animations": "^9.0.0",
"@angular/cdk": "^9.0.0",
"@angular/common": "^9.0.0",
"@angular/core": "^9.0.0",
"@angular/forms": "^9.0.0",
"@angular/material": "^9.0.0",
"@angular/platform-browser": "^9.0.0",
"@angular/platform-browser-dynamic": "^9.0.0",
"@angular/router": "^9.0.0",
"@ngrx/effects": "^9.0.0",
"@ngrx/store": "^9.0.0",
"monaco-editor-core": "^0.20.0",
"monaco-languages": "^1.10.0",
"requirejs": "^2.3.6",
"rxjs": "^6.5.5",
"zone.js": "^0.10.2"
}
}