-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathpackage.json
39 lines (39 loc) · 998 Bytes
/
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
{
"name": "tfjs-backend-nodegl",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -p . -t verbose",
"test": "yarn && yarn build && ts-node --transpile-only src/run_tests.ts",
"test-dev": "tsc && ts-node --transpile-only src/run_tests.ts"
},
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs.git",
"directory": "tfjs-backend-nodegl"
},
"dependencies": {
"@tensorflow/tfjs-core": "^3.3.0",
"node-gles": "^0.0.13"
},
"devDependencies": {
"@types/jasmine": "~2.8.6",
"@types/node": "^10.5.1",
"@types/rimraf": "~2.0.2",
"clang-format": "^1.2.4",
"jasmine": "~3.1.0",
"ts-node": "^8.1.0",
"tslint": "~5.9.1",
"tslint-no-circular-imports": "^0.5.0",
"typescript": "3.5.3"
},
"resolutions": {
"node-fetch": "2.6.7",
"minimist": "1.2.6"
}
}