-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 727 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 727 Bytes
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
{
"type": "module",
"name": "custom-tensorflow-layers",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "mocha --loader=ts-node/esm 'test/**/*.{ts,js}' --timeout 500000"
},
"keywords": [],
"author": "Mathew Lawrence",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.2",
"mocha": "^9.1.3",
"rollup": "^2.58.1",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@tensorflow/tfjs": "^3.10.0",
"jest": "^27.3.1",
"ts-node": "^10.4.0"
}
}