-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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-off-peaks-hours",
"version": "0.2.2",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/timoa/fitbit-off-peaks-hours.git"
},
"author": {
"name": "Damien Laureaux",
"email": "d.laureaux@timoa.com",
"url": "https://timoa.com"
},
"scripts": {
"pretest": "eslint ./src",
"test": "./node_modules/.bin/mocha --reporter spec",
"test:coverage": "./node_modules/.bin/nyc npm test",
"test:functional": "./node_modules/.bin/mocha --reporter spec ./test/functional",
"test:all": "./node_modules/.bin/run-s test:functional test:coverage",
"docker:status": "node src/healthcheck"
},
"devDependencies": {
"@fitbit/sdk": "6.1.0",
"acorn": "8.14.0",
"acorn-jsx": "5.3.2",
"chai": "4.5.0",
"chai-as-promised": "7.1.2",
"chai-http": "4.4.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"espree": "9.6.1",
"mocha": "10.8.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0"
},
"fitbit": {
"appUUID": "b96553d5-6027-4af6-be06-8c301fa77c41",
"appType": "app",
"appDisplayName": "Off-peak Hours",
"iconFile": "resources/icon.png",
"wipeColor": "#607d8b",
"requestedPermissions": [],
"buildTargets": [
"atlas",
"vulcan"
],
"i18n": {
"en-US": {
"name": "Off-peak Hours"
},
"fr-FR": {
"name": "Heures Creuses"
}
},
"defaultLanguage": "en-US"
}
}