-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
{
"name": "fitbit-sdk-types",
"version": "8.0.3",
"author": "Sergio Morchón Poveda <sergio.morchon@outlook.com>",
"description": "Types for Fitbit SDK.",
"bin": "scripts/index.js",
"type": "module",
"files": [
"types/**/*.d.ts",
"scripts/**/*.js",
"scripts/scaffolding/**"
],
"keywords": [
"typescript",
"fitbit",
"sdk",
"fitbitdev"
],
"license": "MIT",
"homepage": "https://github.com/SergioMorchon/fitbit-sdk-types",
"bugs": {
"url": "https://github.com/SergioMorchon/fitbit-sdk-types/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SergioMorchon/fitbit-sdk-types"
},
"scripts": {
"test:app": "tsc -p test-code-samples/app",
"test:companion": "tsc -p test-code-samples/companion",
"test:settings": "tsc -p test-code-samples/settings",
"test:scripts": "tsc -p scripts",
"test": "npm run test:app && npm run test:companion && npm run test:settings && npm run test:scripts",
"prettier": "prettier -l \"**/*.ts\" \"**/*.tsx\" \"**/*.json\" \"**/*.yml\" \"**/*.md\"",
"lint": "eslint types/**/*.ts",
"check-code": "npm run lint && npm run prettier",
"fix-code": "npm run lint -- --fix types/**/*.ts && npm run prettier -- --write",
"prepublishOnly": "npm run check-code && npm test"
},
"devDependencies": {
"@types/node": "^18.17.8",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
},
"packageManager": "yarn@3.6.2"
}