forked from ml5js/ml5-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.16 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "ml5",
"version": "0.5.0",
"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",
"develop": "npm-run-all --parallel start examples:serve examples:watch",
"start": "webpack-dev-server --config webpack.dev.babel.js",
"manual-test": "webpack-dev-server --open --config webpack.test.babel.js",
"build": "webpack --config webpack.prod.babel.js --config-name ml5",
"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",
"serve:docs": "docsify serve docs",
"update:readme": "node ./scripts/updateReadme.js",
"update:docs": "node ./scripts/updateDocVersions.js $oldversion",
"publish:npm": "npm run build && npm publish",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"examples:serve": "live-server ./examples --port=8081 --mount=/:./examples --wait=250",
"examples:update-json": "node scripts/update-examples-json.js",
"examples:watch": "onchange -f 'addDir unlinkDir' './examples' -- npm run examples:update-json",
"preexamples:build": "rimraf dist_examples",
"examples:build": "npm run examples:update-json && webpack --config webpack.prod.babel.js --config-name examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ml5js/ml5-library.git"
},
"keywords": [
"machine learning"
],
"author": "NYU ITP <cvalenzuela@nyu.edu> (https://github.com/ml5js)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ml5js/ml5-library/issues"
},
"homepage": "https://github.com/ml5js/ml5-library#readme",
"devDependencies": {
"all-contributors-cli": "^6.10.0",
"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": "4.0.3",
"copy-webpack-plugin": "^5.1.1",
"cz-conventional-changelog": "2.1.0",
"docsify-cli": "^4.3.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.5.1",
"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",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"recursive-readdir": "^2.2.2",
"regenerator-runtime": "0.11.1",
"rimraf": "2.6.2",
"semantic-release": "^15.13.26",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "4.1.1",
"webpack-cli": "2.0.10",
"webpack-dev-server": "3.10.3",
"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"
]
},
"peerDependencies": {
"@tensorflow/tfjs-core": "^1.2.9",
"@tensorflow/tfjs-converter": "^1.2.9"
},
"dependencies": {
"@magenta/sketch": "0.2.0",
"@tensorflow-models/body-pix": "1.1.2",
"@tensorflow-models/coco-ssd": "^2.0.0",
"@tensorflow-models/knn-classifier": "1.2.1",
"@tensorflow-models/mobilenet": "2.0.3",
"@tensorflow-models/posenet": "^2.2.1",
"@tensorflow-models/speech-commands": "0.3.9",
"@tensorflow-models/universal-sentence-encoder": "^1.2.2",
"@tensorflow/tfjs": "^1.7.0",
"@tensorflow/tfjs-vis": "^1.1.0",
"events": "^3.0.0",
"face-api.js": "~0.22.2",
"onchange": "^6.1.0"
}
}