forked from asafyish/predictionio-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
44
{
"name": "predictionio-driver",
"version": "0.5.0",
"description": "predictionio-driver is a PredictionIO 0.8+ client supporting both callback syntax and promise syntax",
"license": "MIT",
"author": "Asaf Yishai",
"homepage": "https://github.com/asafyish/predictionio-driver",
"repository": {
"type": "git",
"url": "https://github.com/asafyish/predictionio-driver"
},
"bugs": {
"url": "https://github.com/asafyish/predictionio-driver/issues"
},
"keywords": [
"prediction",
"predictionio",
"driver",
"machine learning"
],
"dependencies": {
"bluebird": "~3.0.0",
"request": "~2.67.0",
"lodash": "~3.0.0"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.11.2",
"grunt-mocha-test": "~0.12.4",
"jshint-stylish": "~2.0.1",
"load-grunt-tasks": "~3.2.0",
"time-grunt": "~1.2.1",
"mocha": "~2.3.4",
"chai": "~3.0.0",
"chai-as-promised": "~5.1.0"
},
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec"
},
"engines": {
"node": ">=0.10.0"
}
}