-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 923 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 923 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
32
33
34
35
36
37
{
"name": "jubatus-tutorial-node",
"private": true,
"version": "0.6.3",
"dependencies": {
"bluebird": "^3.5.1",
"jubatus": "^0.9.9",
"lodash": "^4.17.11",
"minimist": "^1.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naokikimura/jubatus-tutorial-node.git"
},
"description": "Jubatus Tutorial in Node.js",
"keywords": [
"jubatus"
],
"author": "Naoki Kimura",
"license": "MIT",
"bugs": {
"url": "https://github.com/naokikimura/jubatus-tutorial-node/issues"
},
"homepage": "https://github.com/naokikimura/jubatus-tutorial-node#readme",
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/lodash": "^4.14.107",
"@types/minimist": "^1.2.0",
"@types/msgpack-lite": "^0.1.6",
"@types/node": "^9.6.6",
"typescript": "^2.8.3"
},
"scripts": {
"prepare": "tsc",
"start": "node ./dist/tutorial.js"
}
}