forked from ml5js/ml5-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.29 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ml5",
"version": "0.0.3",
"description": "A friendly machine learning library for the web.",
"main": "dist/ml5.js",
"directories": {
"examples": "examples",
"dist": "dist",
"test": "test"
},
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist",
"start:dev": "webpack-dev-server --mode development --watch-content-base --open",
"build": "npm-run-all build:*",
"build:main": "webpack --output-filename ml5.js",
"build:min": "uglifyjs dist/ml5.js -o dist/ml5.min.js",
"test:dev": "jest --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ml5js/ml5-library.git"
},
"keywords": [
"machine learning"
],
"author": "NYU ITP <[email protected]> (https://github.com/ml5js)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ml5js/ml5-library/issues"
},
"homepage": "https://github.com/ml5js/ml5-library#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-jest": "22.4.1",
"babel-loader": "7.1.4",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.18.2",
"eslint-config-airbnb-base": "12.1.0",
"eslint-loader": "2.0.0",
"eslint-plugin-import": "2.9.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"ghooks": "2.0.2",
"jest": "22.4.2",
"npm-run-all": "4.1.2",
"regenerator-runtime": "0.11.1",
"rimraf": "2.6.2",
"semantic-release": "15.0.2",
"uglify-es": "3.3.9",
"webpack": "4.1.1",
"webpack-cli": "2.0.10",
"webpack-dev-server": "3.1.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test"
}
},
"files": [
"dist",
"README.md"
],
"babel": {
"presets": [
"env",
"es2015",
"stage-2"
],
"plugins": [
"transform-async-to-generator"
]
},
"dependencies": {
"deeplearn": "0.5.1",
"deeplearn-knn-image-classifier": "0.4.2",
"deeplearn-squeezenet": "0.2.0"
}
}