-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
39 lines (39 loc) · 894 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
{
"name": "quickdraw.js",
"version": "1.0.6",
"description": "The Google Quick Draw dataset ported to a MNIST-like 28x28 greyscale image dataset, useable by JavaScript machine-learning libraries",
"main": "./src/quickdraw",
"repository": {
"type": "git",
"url": "https://github.com/wagenaartje/quickdraw.js"
},
"keywords": [
"quickdraw",
"dataset",
"machine learning",
"google"
],
"author": {
"name": "Thomas Wagenaar",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wagenaartje/quickdraw.js/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=7.6"
},
"dependencies": {
"ndjson": "^1.5.0"
},
"devDependencies": {
"semistandard": "^11.0.0",
"chai": "^4.1.1",
"mocha": "^3.5.0"
},
"scripts": {
"test": "mocha test"
}
}