forked from kilohealth/rn-fitness-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2 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
{
"name": "@kilohealth/rn-fitness-tracker",
"version": "1.5.3",
"description": "Fitness & Health tracking package for React Native for Android & iOS",
"homepage": "https://github.com/doville/rn-fitness-tracker",
"repository": "https://github.com/doville/rn-fitness-tracker",
"summary": "",
"author": "Kilo.Health",
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"docs": "rm -rf dist && yarn tsc && yarn jsdoc2md --files ./dist/**/*.js > ./api.md --separators && rm -rf dist",
"major": "yarn docs && yarn changelog -M && git add CHANGELOG.md api.md && yarn version --major",
"minor": "yarn docs && yarn changelog -m && git add CHANGELOG.md api.md && yarn version --minor",
"patch": "yarn docs && yarn changelog -p && git add CHANGELOG.md api.md && yarn version --patch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react-native",
"fitness",
"step",
"track",
"tracker",
"health",
"android",
"ios",
"healthkit",
"pedometer",
"fit",
"googlefit",
"fitnessapi"
],
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/preset-env": "^7.14.0",
"@babel/preset-typescript": "^7.13.0",
"@types/react-native": "^0.64.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"eslint-watch": "^7.0.0",
"generate-changelog": "^1.8.0",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^7.0.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"react-native": "^0.64.0",
"react-native-device-info": "^8.1.2",
"react-native-permissions": "^3.0.3",
"tsc": "^1.20150623.0",
"typescript": "^4.2.4"
}
}