-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1007 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
40
41
42
43
44
45
{
"name": "kinann",
"version": "0.10.0",
"description": "Kinematic artificial neural network Javascript library",
"main": "index.js",
"directories": {
"test": "test",
"src": "src",
"doc": "doc"
},
"dependencies": {
"drive-frame": "^0.9.1",
"mathjs": "^3.9.2",
"winston": "^2.3.1"
},
"devDependencies": {
"mocha": "^3.2.0",
"should": "^11.2.0"
},
"scripts": {
"test": "npm run test:verbose",
"test:watch": "mocha -w -R min --inline-diffs",
"test:test": "mocha -w -R min --inline-diffs -g TEST",
"test:verbose": "mocha --inline-diffs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firepick/kinann.git"
},
"keywords": [
"kinematics",
"robot",
"artifical",
"neural",
"networks",
"FirePick",
"firenodejs"
],
"author": "Karl Lew",
"license": "MIT",
"bugs": {
"url": "https://github.com/firepick/kinann/issues"
},
"homepage": "https://github.com/firepick/kinann"
}