-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "posenet-keypoints-normalization",
"version": "0.2.0",
"description": "posenet keypoints normalization",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"watch": "NODE_ENV=development parcel --open index.html ",
"build": "NODE_ENV=production parcel build index.html --public-url ./",
"clean": "rm -rf .cache dist"
},
"repository": {
"type": "git",
"url": "git@github.com:paulvollmer/posenet-keypoints-normalization.git"
},
"keywords": [
"posenet"
],
"author": "paulvollmer",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"parcel-bundler": "~1.6.2"
},
"eslintConfig": {
"extends": "google",
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
}
},
"eslintIgnore": [
"dist/"
],
"dependencies": {
"@tensorflow-models/posenet": "^0.2.2",
"@tensorflow/tfjs": "^0.12.4",
"posenet-keypoints-viewer": "paulvollmer/posenet-keypoints-viewer#0.2.0"
}
}