-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "developer-bridge",
"version": "0.1.0",
"description": "Fitbit Developer Bridge toolkit",
"private": true,
"author": "Fitbit, Inc.",
"license": "BSD-3-Clause",
"repository": "github:Fitbit/developer-bridge",
"bugs": {
"url": "https://github.com/Fitbit/developer-bridge/issues"
},
"homepage": "https://github.com/Fitbit/developer-bridge#readme",
"scripts": {
"build": "rm -rf packages/*/lib && rm -rf packages/*/tsconfig.tsbuildinfo && tsc -b packages",
"test": "jest",
"test:coveralls": "jest --runInBand --coverage && cat coverage/lcov.info | coveralls",
"lint": "tslint --project packages/tsconfig.settings.json --format code-frame",
"checkstyle": "prettier --list-different \"**/*.{js,jsx,ts,tsx,json}\"",
"publish": "yarn run test && lerna publish",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^28.1.2",
"coveralls": "^3.1.1",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lerna": "^5.1.4",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.7.4"
},
"workspaces": [
"packages/*"
]
}