-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.52 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
{
"name": "tensorx",
"version": "0.0.1",
"description": "Generate Tensorflow model with JSON. A Declarative JSON library for AI, NLP and ML models powered by tensorflow ",
"main": "index.mjs",
"module": "index.mjs",
"browser": "bundle/tensorscript.umd.js",
"node": "bundle/tensorscript.cjs.js",
"es": "bundle/tensorscript.esm.js",
"scripts": {
"test": "nyc mocha -r @std/esm \"test/**/*.{js,mjs}\"",
"doc": "esdoc",
"build": "rollup -c && esdoc",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/repetere/tensorscript-node.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/repetere/tensorscript-node/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": {
"@repetere/esdoc-inject-gtm-plugin": "^0.1.0",
"@std/esm": "^0.26.0",
"babel-core": "^6.26.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"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.0.72",
"mocha": "^5.2.0",
"modelscript": "^2.1.0",
"nyc": "^12.0.2",
"rollup": "^0.63.4",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0"
},
"dependencies": {
"@tensorflow/tfjs-node": "^0.1.20",
"lodash.range": "^3.2.0"
},
"@std/esm": "cjs",
"nyc": {
"extension": [
".mjs"
],
"include": [
"lib/**/*.mjs"
],
"require": [
"@std/esm"
]
}
}