forked from ml5js/ml5-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.77 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
91
92
93
94
95
96
97
98
{
"name": "ml5",
"version": "0.2.3",
"description": "A friendly machine learning library for the web.",
"main": "dist/ml5.min.js",
"directories": {
"examples": "examples",
"dist": "dist"
},
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist",
"start": "webpack-dev-server --open --config webpack.dev.babel.js",
"manual-test": "webpack-dev-server --open --config webpack.test.babel.js",
"build": "webpack --config webpack.prod.babel.js",
"test": "./node_modules/karma/bin/karma start karma.conf.js",
"test:single": "./node_modules/karma/bin/karma start karma.conf.js --single-run",
"test-travis": "./scripts/test-travis.sh"
},
"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-loader": "7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.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-config-prettier": "^4.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",
"html-webpack-plugin": "^3.0.7",
"jasmine-core": "3.1.0",
"karma": "2.0.0",
"karma-browserstack-launcher": "~1.3.0",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "1.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "1.0.0",
"karma-webpack": "3.0.0",
"npm-run-all": "4.1.2",
"regenerator-runtime": "0.11.1",
"rimraf": "2.6.2",
"semantic-release": "15.0.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "4.1.1",
"webpack-cli": "2.0.10",
"webpack-dev-server": "3.1.0",
"webpack-merge": "^4.1.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"files": [
"dist",
"README.md"
],
"babel": {
"presets": [
[
"env"
]
],
"plugins": [
"transform-runtime",
"transform-object-rest-spread"
]
},
"dependencies": {
"@magenta/sketch": "0.1.2",
"@tensorflow-models/mobilenet": "0.2.2",
"@tensorflow-models/posenet": "0.2.2",
"@tensorflow-models/knn-classifier": "0.2.2",
"@tensorflow/tfjs": "0.13.0",
"events": "^3.0.0"
}
}