-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
130 lines (130 loc) · 3.89 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@fitbit/sdk",
"version": "7.2.0-pre.0",
"description": "Toolchain for building Fitbit apps",
"author": "Fitbit, Inc.",
"license": "BSD-3-Clause",
"repository": "github:Fitbit/fitbit-sdk-toolchain",
"bugs": {
"url": "https://github.com/Fitbit/fitbit-sdk-toolchain/issues"
},
"homepage": "https://github.com/Fitbit/fitbit-sdk-toolchain#readme",
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.build.json",
"test": "jest",
"test:coveralls": "jest --runInBand --coverage --coverageReporters=text-lcov | coveralls",
"lint": "tsc --noEmit --noUnusedLocals && tslint --project . --format codeFrame",
"depcheck": "depcheck --ignores='@types/*,tslint-config-airbnb' --ignore-dirs='toolchain,__test__'",
"checkstyle": "prettier --list-different \"**/*.{js,jsx,ts,tsx,json}\"",
"prepublishOnly": "npm run test && npm run build",
"prepare": "husky install"
},
"devDependencies": {
"@types/babel-core": "^6.25.7",
"@types/concat-stream": "^2.0.0",
"@types/dateformat": "^3.0.1",
"@types/event-stream": "^4.0.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/gulp-zip": "^4.0.2",
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.2",
"@types/lodash": "^4.14.182",
"@types/multipipe": "^3.0.0",
"@types/multistream": "^4.1.0",
"@types/plugin-error": "^1.0.0",
"@types/semver": "^7.3.10",
"@types/update-notifier": "^5.1.0",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.3",
"@types/vinyl": "^2.0.6",
"@types/vinyl-buffer": "^1.0.0",
"@types/vinyl-fs": "^2.4.12",
"@types/yargs": "^17.0.10",
"concat-stream": "^2.0.0",
"coveralls": "^3.1.1",
"depcheck": "^1.4.3",
"event-stream": "^4.0.1",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-date-mock": "^1.0.8",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-sonarts": "^1.9.0"
},
"dependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-block-scoped-functions": "^7.16.7",
"@babel/plugin-transform-block-scoping": "^7.18.4",
"@fitbit-sdk/companion-gettext": "~3.3.0",
"@fitbit/bison-i18n": "^1.1.0",
"@fitbit/image-codec-txi": "^1.1.6",
"@fitbit/pngjs": "^3.3.3-fitbit.4",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/pluginutils": "^4.2.1",
"chalk": "^4.1.0",
"dateformat": "^4.6.3",
"drop-stream": "^1.0.0",
"elfy": "^1.0.0",
"events-intercept": "^2.0.0",
"fp-ts": "^2.12.1",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"gulp-zip": "^5.1.0",
"humanize-list": "^1.0.1",
"inquirer": "^9.0.0",
"io-ts": "2.2.16",
"jest-serializer-path": "^0.1.15",
"lazystream": "^1.0.1",
"lodash": "^4.17.21",
"magic-string": "^0.26.2",
"multipipe": "^4.0.0",
"multistream": "^4.1.0",
"playback-stream": "^1.0.0",
"plugin-error": "^1.0.1",
"pofile": "^1.1.3",
"rollup": "^2.75.6",
"semver": "^7.3.7",
"simple-random": "^1.0.3",
"source-map": "^0.7.4",
"source-map-compactor": "^1.0.1",
"terser": "^5.14.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"update-notifier": "^5.1.0",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"vinyl": "^2.2.1",
"vinyl-buffer": "^1.0.1",
"vinyl-fs": "^3.0.3",
"yargs": "^17.5.1"
},
"bin": {
"fitbit-build": "./bin/fitbit-build.js"
},
"main": "./lib/index",
"files": [
"bin",
"lib",
"scaffold",
"sdk-tsconfig.json"
],
"engines": {
"node": ">=10.10.0"
},
"greenkeeper": {
"ignore": [
"indent-string",
"@types/indent-string"
]
},
"packageManager": "yarn@3.1.1"
}