-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "nnet-typescript",
"version": "1.0.6",
"description": "A simple neural network library for TypeScript.",
"main": "dist/nnet.js",
"typings": "dist/nnet.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"test-watch": "karma start --no-single-run",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s-soltys/NNet-TypeScript.git"
},
"keywords": [
"Neural networks",
"Machine learning",
"TypeScript"
],
"author": "szymon.soltysiak@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/s-soltys/NNet-TypeScript/issues"
},
"homepage": "https://github.com/s-soltys/NNet-TypeScript#readme",
"devDependencies": {
"@types/jasmine": "^2.5.35",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-typescript": "2.1.7",
"typescript": "^2.1.6"
}
}