This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
111 lines (111 loc) · 3.25 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "tensorscript",
"version": "1.5.1",
"description": "Deep Learning Classification, LSTM Time Series, Regression and Multi-Layered Perceptrons with Tensorflow",
"main": "index.js",
"module": "index.js",
"type": "module",
"browser": "bundle/tensorscript.umd.js",
"web": "bundle/tensorscript.web.js",
"node": "bundle/tensorscript.cjs.js",
"es": "bundle/tensorscript.esm.js",
"scripts": {
"test": "nyc mocha -r @std/esm \"test/**/*.{js,mjs}\"",
"test-file": "nyc mocha -r @std/esm ",
"doc": "esdoc",
"build": "rollup -c && esdoc",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/repetere/tensorscript.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/repetere/tensorscript/issues"
},
"engines": {
"node": ">=8"
},
"author": {
"name": "Yaw Etse",
"url": "https://github.com/yawetse"
},
"keywords": [
"regression",
"classification",
"supervised",
"learning",
"supervised learning",
"dl",
"deep learning",
"tensorflow",
"machine learning",
"ai"
],
"homepage": "https://repetere.github.io/tensorscript",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.3",
"@repetere/esdoc-inject-gtm-plugin": "^0.1.0",
"@std/esm": "^0.26.0",
"babel-plugin-istanbul": "^5.1.4",
"babel-plugin-replace-imports": "^1.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-publish-markdown-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"esm": "^3.2.22",
"fs-extra": "^7.0.1",
"mocha": "^6.1.4",
"modelscript": "^2.1.3",
"nyc": "^14.1.0",
"rollup": "^1.11.3",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-replace": "^2.1.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-terser-js": "^1.0.2",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
},
"dependencies": {
"@tensorflow-models/universal-sentence-encoder": "^1.1.1",
"@tensorflow/tfjs": "^1.2.7",
"@tensorflow/tfjs-node": "^1.2.7",
"lodash.range": "^3.2.0"
},
"@std/esm": "cjs",
"nyc": {
"extension": [
".mjs",
".js"
],
"include": [
"lib/**/*.mjs",
"lib/**/*.js"
],
"require": [
"@std/esm"
]
}
}