-
Notifications
You must be signed in to change notification settings - Fork 688
/
package.json
61 lines (61 loc) · 1.98 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
{
"name": "@teachablemachine/image",
"version": "0.8.5-alpha2",
"description": "A support library for use with mobilenet-based models generated by Teachable Machine (https://g.co/teachablemachine)",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run make-version && tsc && npm run build-bundle",
"build-bundle": "webpack --reporter=basic --mode=production",
"build-clean": "rm -rf ./dist && npm run build",
"dev": "concurrently \"npm run dev-lite\" \"npm run test-watch\"",
"dev-lite": "webpack --watch --reporter=basic --mode=development",
"lint": "tslint -p . -t verbose",
"publish-local": "npm run build-clean && yalc publish",
"make-version": "node scripts/make-version.js",
"update-release": "npm run lint && npm run build-clean",
"test": "karma start --single-run",
"test-watch": "karma start",
"tsc": "tsc"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/googlecreativelab/teachablemachine-libraries.git",
"directory": "image"
},
"peerDependencies": {
"@tensorflow/tfjs": "1.3.1"
},
"devDependencies": {
"@tensorflow/tfjs": "1.3.1",
"@types/chai": "^4.2.3",
"@types/cli-table": "^0.3.0",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"cli-table": "^0.3.1",
"concurrently": "^6.2.1",
"console.table": "^0.10.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-typescript": "^5.5.1",
"lodash.clonedeep": "^4.5.0",
"mocha": "^6.1.4",
"puppeteer": "^1.20.0",
"source-map-loader": "^0.2.4",
"terser-webpack-plugin": "^2.1.0",
"ts-loader": "^6.1.2",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"yalc": "^1.0.0-pre.34"
},
"dependencies": {
"autobind-decorator": "^2.4.0",
"seedrandom": "^2.4.3"
}
}