forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.67 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
71
72
73
74
75
76
77
{
"name": "@tensorflow/tfjs-data",
"version": "0.0.0",
"description": "TensorFlow Data API in JavaScript",
"private": false,
"main": "dist/index.js",
"jsdelivr": "dist/tf-data.min.js",
"unpkg": "dist/tf-data.min.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/tf-data.esm.js",
"module": "dist/tf-data.esm.js",
"miniprogram": "dist/miniprogram",
"license": "Apache-2.0",
"devDependencies": {
"@tensorflow/tfjs-backend-cpu": "link:../tfjs-backend-cpu",
"@tensorflow/tfjs-core": "link:../tfjs-core",
"@tensorflow/tfjs-layers": "link:../tfjs-layers",
"@types/jasmine": "~2.5.53",
"@types/seedrandom": "^2.4.27",
"@types/utf8": "~2.1.6",
"clang-format": "~1.2.2",
"http-server": "~0.10.0",
"jasmine": "3.1.0",
"jasmine-core": "~3.1.0",
"karma": "~4.0.1",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "~1.1.0",
"karma-jasmine": "~1.1.1",
"karma-typescript": "~4.0.0",
"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.7.0",
"typescript": "3.5.3",
"yalc": "^1.0.0-pre.23"
},
"scripts": {
"build": "tsc",
"build-ci": "tsc",
"build-core": "cd ../tfjs-core && yarn && yarn build",
"build-core-ci": "cd ../tfjs-core && yarn && yarn build-ci",
"build-layers": "cd ../tfjs-layers && yarn && yarn build",
"build-backend-cpu": "cd ../tfjs-backend-cpu && yarn && yarn build",
"build-backend-cpu-ci": "cd ../tfjs-backend-cpu && yarn && yarn build-ci",
"build-layers-ci": "cd ../tfjs-layers && yarn && yarn build-ci",
"build-deps": "yarn build-core && yarn build-layers && yarn build-backend-cpu",
"build-deps-ci": "yarn build-core-ci && yarn build-layers-ci && yarn build-backend-cpu-ci",
"build-npm": "./scripts/build-npm.sh",
"link-local": "yalc link",
"publish-local": "rimraf dist/ && yarn build-npm && yalc push",
"publish-npm": "npm publish",
"test": "yarn && yarn build-deps && ts-node src/test_node.ts",
"test-browsers": "karma start --browsers='Chrome,Firefox'",
"test-ci": "ts-node src/test_node.ts",
"test-snippets": "ts-node ./scripts/test_snippets.ts",
"lint": "tslint -p . -t verbose"
},
"peerDependencies": {
"@tensorflow/tfjs-core": "link:../tfjs-core",
"seedrandom": "~2.4.3"
},
"dependencies": {
"@types/node-fetch": "^2.1.2",
"node-fetch": "~2.1.2"
},
"browser": {
"fs": false,
"node-fetch": false,
"string_decoder": false,
"crypto": false
}
}