-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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/pulse",
"version": "0.1.1",
"description": "PULSE protocol stack implementation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Google LLC",
"license": "Apache-2.0",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib && tsc",
"prettier": "prettier \"**/*.{ts,tsx,json}\"",
"format": "yarn prettier --write",
"lint": "tsc --noEmit && eslint . --fix",
"checkstyle": "yarn prettier -c",
"test": "jest",
"test:coveralls": "yarn lint && jest --coverage --coverageReporters=text-lcov | coveralls",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"prepare": "husky install"
},
"dependencies": {
"crc-32": "^1.2.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"coveralls": "^3.1.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.4.5",
"lint-staged": "^12.1.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}