-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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": "fitbit-views",
"version": "1.0.3",
"description": "Manage Views and navigation in Fitbit apps",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "tsc",
"prettier": "prettier **/*.ts !**/*.d.ts **/*.json **/*.md -l",
"check-code": "npm run prettier",
"fix-code": "npm run prettier -- --write",
"test": "jest",
"prepublishOnly": "npm run check-code && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SergioMorchon/fitbit-views.git"
},
"keywords": [
"fitbit",
"fitbitdev",
"views",
"navigation",
"ui"
],
"author": "Sergio Morchón Poveda",
"license": "MIT",
"bugs": {
"url": "https://github.com/SergioMorchon/fitbit-views/issues"
},
"homepage": "https://github.com/SergioMorchon/fitbit-views#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.13",
"babel-jest": "^26.3.0",
"fitbit-sdk-types": "^4.3.9",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
}
}