forked from tensorflow/tfjs-tsne
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.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
{
"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": {
"@tensorflow/tfjs-core": "^0.10.1",
"clang-format": "~1.2.2",
"mocha": "^5.1.1",
"@types/jasmine": "^2.8.6",
"jasmine-core": "^2.99",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-typescript": "^3.0.12",
"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",
"mkdirp": "~0.5.1",
"tslint": "^5.8.0",
"typescript": "^2.8.3",
"uglify-js": "~3.0.28",
"yalc": "~1.0.0-pre.21"
},
"peerDependencies": {
"@tensorflow/tfjs-core": ">=0.10.1"
},
"scripts": {
"build": "tsc --project tsconfig-es5.json && tsc",
"build-npm": "./scripts/build-npm.sh",
"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"
}