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
/
package.json
70 lines (70 loc) · 2.21 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
66
67
68
69
70
{
"name": "@tensorflow/tfjs-core",
"version": "1.0.4",
"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",
"jsnext:main": "dist/tf-core.esm.js",
"module": "dist/tf-core.esm.js",
"engines": {
"yarn": ">= 1.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs-core.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@bazel/bazel": "^0.24.0",
"@bazel/typescript": "^0.27.8",
"@types/jasmine": "~2.5.53",
"@types/node": "~9.6.0",
"browserify": "~16.2.3",
"clang-format": "~1.2.4",
"jasmine": "~3.1.0",
"jasmine-core": "~3.1.0",
"karma": "~4.0.0",
"karma-browserify": "~6.0.0",
"karma-browserstack-launcher": "~1.4.0",
"karma-chrome-launcher": "~2.2.0",
"karma-jasmine": "~1.1.0",
"karma-typescript": "~4.0.0",
"npm-run-all": "~4.1.3",
"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",
"rollup-plugin-uglify": "~3.0.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"tslint-no-circular-imports": "~0.5.0",
"typescript": "3.3.3333",
"watchify": "~3.11.1",
"yalc": "~1.0.0-pre.21"
},
"scripts": {
"build": "tsc",
"build:bazel": "bazel build //...",
"build-npm": "./scripts/build-npm.sh",
"link-local": "yalc link",
"publish-local": "rimraf dist/ && yarn build && rollup -c && yalc push",
"lint": "tslint -p . -t verbose",
"coverage": "KARMA_COVERAGE=1 karma start --browsers='Chrome' --singleRun",
"test": "karma start",
"run-browserstack": "karma start --browserstack",
"test-benchmark": "cd integration_tests/benchmarks && yarn benchmark-travis && cd ../../",
"test-node": "node dist/test_node.js",
"test-integration": "./scripts/test-integration.sh",
"test-travis": "./scripts/test-travis.sh"
},
"dependencies": {
"@types/seedrandom": "2.4.27",
"@types/webgl-ext": "0.0.30",
"@types/webgl2": "0.0.4",
"seedrandom": "2.4.3"
}
}