This repository has been archived by the owner on Sep 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
60 lines (60 loc) · 1.84 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
{
"name": "@tensorflow/tfjs-tsne",
"version": "0.2.0",
"description": "TensorFlow.js powered tSNE implementation",
"private": false,
"main": "dist/index.js",
"jsdelivr": "dist/tfjs-tsne.min.js",
"unpkg": "dist/tfjs-tsne.min.js",
"jsnext:main": "dist-es6/index.js",
"module": "dist-es6/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs-tsne.git"
},
"devDependencies": {
"cross-env": "^5.2.0",
"@tensorflow/tfjs-core": "^0.10.1",
"@types/jasmine": "^2.8.6",
"clang-format": "~1.2.2",
"jasmine-core": "^2.99",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-jasmine": "~1.1.1",
"karma-typescript": "~4.0.0",
"mkdirp": "~0.5.1",
"mocha": "^5.1.1",
"rimraf": "~2.6.2",
"rollup": "~0.58.2",
"rollup-plugin-commonjs": "~9.1.3",
"rollup-plugin-node-resolve": "~3.3.0",
"rollup-plugin-typescript2": "~0.13.0",
"tslint": "^5.8.0",
"typescript": "^2.8.3",
"uglify-js": "~3.0.28",
"yalc": "~1.0.0-pre.21"
},
"peerDependencies": {},
"scripts": {
"build": "tsc --project tsconfig-es5.json && tsc",
"build-npm": "./scripts/build-npm.sh",
"build-npm-win": "rimraf dist/ && yarn && yarn build && rollup -c && uglifyjs dist/tfjs-tsne.js -c -m -o dist/tfjs-tsne.min.js",
"link-local": "yalc link",
"publish-local": "npm run build-npm && yalc push",
"lint": "tslint -p . -t verbose",
"test": "karma start",
"test-travis": "karma start --browsers='bs_firefox_mac,bs_chrome_mac' --singleRun"
},
"license": "Apache-2.0",
"dependencies": {
"@tensorflow/tfjs-core": "0.12.18",
"buffer-hexdump": "^1.0.0",
"hex-view": "^1.0.0",
"hexdump": "^0.1.0",
"hexdump-js": "^0.1.0",
"hxd": "^1.4.2",
"uupaa.hexdump.js": "^0.0.5",
"xorshift": "^1.1.1"
}
}