forked from CocofoxStudios/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "@tensorflow/tfjs",
"version": "0.8.0",
"description": "An open-source machine learning framework.",
"private": false,
"main": "dist/index",
"jsdelivr": "dist/tf.min.js",
"unpkg": "dist/tf.min.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jasmine": "~2.8.6",
"@types/node": "~9.6.1",
"browserify": "~16.1.1",
"jasmine-core": "~3.1.0",
"karma": "~2.0.0",
"karma-browserstack-launcher": "~1.3.0",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "~1.1.0",
"karma-jasmine": "~1.1.1",
"karma-typescript": "~3.0.12",
"rimraf": "~2.6.2",
"tsify": "~3.0.4",
"tslint": "~5.9.1",
"typescript": "2.7.2",
"uglify-js": "~3.0.28"
},
"scripts": {
"build": "tsc",
"build-npm": "./scripts/build-npm.sh",
"lint": "tslint -p . -t verbose",
"test": "karma start",
"test-travis": "karma start --browsers='bs_firefox_mac,bs_chrome_mac' --singleRun"
},
"dependencies": {
"@tensorflow/tfjs-core": "0.6.1",
"@tensorflow/tfjs-layers": "0.3.0"
}
}