forked from karpathy/convnetjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "convnetjs-ts",
"version": "0.1.0",
"description": "ConvNetJS is a Javascript implementation of Neural networks.",
"main": "lib/index",
"typings": "lib/index",
"scripts": {
"pretest": "npm run buildtest",
"buildtest": "tsc -p tsconfig.test.json",
"test": "mocha test/build/test/*.spec.js --no-timeouts --colors",
"build": "tsc -p . && webpack",
"start": "npm run build && ws",
"install": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoskeoka/convnetjs-ts.git"
},
"keywords": [
"neural-network",
"cnn",
"deep-learning"
],
"author": "yoskeoka <[email protected]>, Andrej Karpathy <[email protected]> (Original)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yoskeoka/convnetjs-ts/issues"
},
"homepage": "https://github.com/yoskeoka/convnetjs-ts#readme",
"devDependencies": {
"@types/chai": "^3.5.0",
"@types/mocha": "^2.2.38",
"@types/node": "^14.14.31",
"chai": "^3.5.0",
"local-web-server": "^4.2.1",
"mocha": "^3.2.0",
"ts-node": "^3.0.0",
"tslib": "^2.1.0",
"tslint": "^5.0.0",
"typescript": "^4.1.5",
"webpack": "^2.4.0"
}
}