forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.98 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": "@tensorflow/tfjs-vis",
"version": "1.4.0",
"description": "Utilities for in browser visualization with TensorFlow.js",
"repository": "https://github.com/tensorflow/tfjs-vis",
"license": "Apache-2.0",
"private": false,
"main": "dist/index.js",
"jsdelivr": "dist/tfjs-vis.umd.min.js",
"unpkg": "dist/tfjs-vis.umd.min.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && NODE_ENV=production webpack",
"lint": "tslint -p . -t verbose",
"test": "karma start",
"run-browserstack": "karma start --singleRun --reporters='dots,karma-typescript,BrowserStack' --hostname='bs-local.com'",
"test-ci": "./scripts/test-ci.sh",
"build-npm": "./scripts/build-npm.sh",
"link-local": "yalc link",
"publish-local": "rimraf dist/ && yarn build && yalc push"
},
"dependencies": {
"d3-format": "~1.3.0",
"d3-selection": "~1.3.0",
"glamor": "~2.20.40",
"preact": "~8.2.9",
"vega": "~5.4.0",
"vega-embed": "~5.1.2",
"vega-lite": "~4.0.0-beta.1"
},
"devDependencies": {
"@tensorflow/tfjs": "~1.0.0",
"@types/d3-format": "~1.3.0",
"@types/d3-selection": "~1.3.2",
"@types/jasmine": "~2.8.8",
"@types/json-stable-stringify": "~1.0.32",
"clang-format": "~1.2.2",
"jasmine": "~3.2.0",
"jasmine-core": "~3.2.0",
"karma": "~4.0.1",
"karma-browserstack-launcher": "~1.3.0",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "~1.1.0",
"karma-jasmine": "~2.0.0",
"karma-safari-launcher": "~1.0.0",
"karma-typescript": "~4.1.1",
"karma-typescript-es6-transform": "~4.1.1",
"npm-run-all": "~4.1.5",
"preact-render-spy": "~1.3.0",
"rimraf": "~2.6.2",
"tslint": "~5.11.0",
"tslint-no-circular-imports": "~0.5.0",
"typescript": "3.5.3",
"webpack": "~4.16.3",
"webpack-cli": "~3.1.0",
"yalc": "~1.0.0-pre.21"
},
"peerDependencies": {
"@tensorflow/tfjs": ">= 1.0.0"
},
"alias": {
"react": "preact",
"react-dom": "preact"
}
}