-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 766 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 766 Bytes
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
{
"name": "DecisionTree",
"version": "1.0.0",
"description": "A decision tree algoritme written in node.",
"main": "src/app.js",
"scripts": {
"test": "NODE_ENV=test mocha -R spec -r should tests --recursive"
},
"author": "Pouja Nikray",
"license": "BSD-2-Clause",
"dependencies": {
"underscore": "~1.6.0",
"debug": "~0.8.1",
"node-gyp": "~0.13.0",
"odbc": "~0.6.6",
"should": "~3.3.1",
"mocha": "~1.18.2",
"bluebird": "~1.2.4",
"jsonfile": "~1.1.1",
"tree-node": "~0.1.6",
"config": "~0.4.35"
},
"devDependencies": {},
"keywords": [
"decision",
"tree",
"higgs",
"continious",
"data"
]
}