-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 966 Bytes
/
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
{
"name": "heedy-fitbit-plugin",
"version": "0.0.0",
"description": "Sync heedy with fitbit",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sync:readme": "remark -u remark-embed-images README.md -o ./dist/fitbit/README.md",
"watch:readme": "remark -u remark-embed-images README.md -o ./dist/fitbit/README.md -w",
"sync:core": "rsync -r --include \"*.py\" --include \"*.conf\" --exclude \"*\" . ./dist/fitbit",
"watch:core": "nodemon --watch . -e py,conf --ignore dist/ --exec \"npm run sync:core\"",
"debug": "run-p 'watch:core' 'watch:readme'",
"build": "npm run sync:core && npm run sync:readme"
},
"repository": {
"type": "git",
"url": "https://github.com/heedy/heedy-fitbit-plugin"
},
"author": "Heedy contributors",
"license": "Apache-2.0",
"dependencies": {
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"remark-cli": "^7.0.1",
"remark-embed-images": "^1.0.2"
}
}