-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.66 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
{
"name": "fitbit-ga4",
"version": "1.2.1",
"description": "Google Analytics 4 (GA4) for Fitbit OS apps, clockfaces, and companions",
"repository": {
"type": "git",
"url": "https://github.com/codeniko/fitbit-ga4.git"
},
"keywords": [
"fitbitdev",
"fitbit",
"ga4",
"google analytics 4",
"google analytics",
"i13n",
"analytics",
"instrumentation",
"track",
"logging",
"tracking",
"tracker",
"versa3",
"sense",
"app",
"clock",
"clockface",
"watchface",
"watch"
],
"author": "Nikolay Feldman",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeniko/fitbit-ga4/issues"
},
"homepage": "https://github.com/codeniko/fitbit-ga4",
"devDependencies": {
"@fitbit/sdk": "~6.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^7.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.4.0",
"mocha": "^8.2.0",
"proxyquire": "^2.1.3",
"semantic-release": "^19.0.2",
"sinon": "^13.0.2",
"supertest": "^4.0.2"
},
"scripts": {
"clean": "rm app.js* companion.js* local-storage.js* shared.js* fetch-wrapper.js*",
"test": "NODE_ENV=test mocha --exit --ignore './node_modules/**' --ignore './**/node_modules/**' --file './test/testSetup.js' './test/*.test.js'",
"lint": "npx eslint . --ext .js",
"lintFix": "npx eslint . --ext .js --fix",
"build": "tsc -project ./src/tsconfig.json --outDir ./",
"build:commonjs": "tsc -project ./src/tsconfig-commonjs.json --outDir ./",
"prepare": "npm run build",
"semantic-release": "semantic-release"
}
}