-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
46 lines (46 loc) · 1.45 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
{
"name": "@tensorflow-models/posenet",
"version": "0.1.1",
"description": "Pretrained PoseNet model in tensorflow.js",
"main": "dist/index.js",
"jsnext:main": "dist-es6/index.js",
"module": "dist-es6/index.js",
"unpkg": "dist/posenet.min.js",
"jsdelivr": "dist/posenet.min.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs-models.git"
},
"peerDependencies": {
"@tensorflow/tfjs": "0.11.2"
},
"devDependencies": {
"@tensorflow/tfjs": "0.11.2",
"@types/jasmine": "~2.5.53",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "~6.23.0",
"jasmine-core": "^3.1.0",
"karma": "~1.7.0",
"karma-browserstack-launcher": "~1.3.0",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "~1.0.1",
"karma-jasmine": "~1.1.0",
"karma-typescript": "~3.0.8",
"rimraf": "~2.6.2",
"rollup": "~0.58.2",
"rollup-plugin-node-resolve": "~3.3.0",
"rollup-plugin-typescript2": "~0.13.0",
"tslint": "~5.8.0",
"typescript": "2.7.2",
"uglify-js": "~3.0.28"
},
"scripts": {
"build": "rimraf dist dist-es6 && tsc --project tsconfig-es5.json && tsc && rollup -c && uglifyjs dist/posenet.js -c -m -o dist/posenet.min.js",
"test": "karma start",
"publish-npm": "yarn build && npm publish",
"dev": "npm run watch && cd demos && npm run watch",
"lint": "tslint -p . -t verbose"
},
"license": "Apache-2.0"
}