This repository has been archived by the owner on Aug 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 950
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "@tensorflow/tfjs-core",
"version": "0.10.1",
"description": "Hardware-accelerated JavaScript library for machine intelligence",
"private": false,
"main": "dist/index.js",
"jsdelivr": "dist/tf-core.min.js",
"unpkg": "dist/tf-core.min.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "/~https://github.com/tensorflow/tfjs-core.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jasmine": "~2.5.53",
"@types/node": "~9.6.0",
"@types/seedrandom": "~2.4.27",
"clang-format": "~1.2.2",
"jasmine-core": "~2.6.4",
"karma": "~1.7.0",
"karma-browserstack-launcher": "~1.3.0",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "~1.0.1",
"karma-jasmine": "~1.1.0",
"karma-typescript": "~3.0.8",
"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",
"shelljs": "~0.7.8",
"tsify": "~3.0.1",
"tslint": "~5.8.0",
"typescript": "2.7.2",
"uglify-js": "~3.0.28",
"watchify": "~3.9.0",
"yalc": "~1.0.0-pre.21"
},
"scripts": {
"build": "tsc",
"build-npm": "./scripts/build-npm.sh",
"link-local": "yalc link",
"publish-local": "yarn build-npm && yalc push",
"lint": "tslint -p . -t verbose",
"test": "karma start",
"test-travis": "karma start --browsers='bs_firefox_mac,bs_chrome_mac' --singleRun"
},
"dependencies": {
"seedrandom": "~2.4.3"
}
}