-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
25 lines (17 loc) · 848 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
{
"name" : "fann",
"version" : "1.0.0",
"description" : "FANN (Fast Artificial Neural Network Library) bindings for Node.js",
"author" : { "name" : "Alex Kocharin"
, "email" : "[email protected]" },
"repository" : { "type" : "git"
, "url" : "git://github.com/rlidwka/node-fann.git" },
"keywords" : [ "fann", "neural", "network", "artificial", "intelligence"
, "neural network", "artificial intelligence", "machine learning" ],
"license" : { "type" : "WTFPL"
, "url" : "http://www.wtfpl.net/txt/copying/" },
"dependencies" : { "nan" : "~1.8" },
"devDependencies" : { "mocha" : "2" },
"scripts" : { "test" : "mocha ./test -R dot" },
"gypfile" : true
}