This repository was archived by the owner on Nov 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.65 KB
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
{
"name": "hearts",
"version": "6.0.0",
"description": "Hearts app for the Pebble smartwatch",
"private": true,
"main": "src/js/src/main.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/smallstoneapps/hearts.git"
},
"keywords": [
"pebble-app"
],
"author": "Matthew Tole <pebble@matthewtole.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smallstoneapps/hearts/issues"
},
"homepage": "https://github.com/smallstoneapps/hearts",
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^11.2.0",
"eslint": "^1.5.1",
"eslint-config-pebble": "^1.2.0",
"eslint-plugin-standard": "^1.3.1",
"karma": "^0.13.10"
},
"dependencies": {
"@smallstoneapps/data-processor": "^2.1.0",
"@smallstoneapps/loading-screen": "^2.2.0",
"@smallstoneapps/message-queue": "^2.4.0",
"@smallstoneapps/utils": "^1.2.0",
"message-queue-pebble": "^1.0.0",
"sprintf-js": "^1.0.3",
"store": "^1.3.20",
"xhr": "^2.2.0"
},
"pebble": {
"uuid": "bcdef00a-b309-485d-b82f-341307693c73",
"displayName": "Hearts",
"targetPlatforms": [
"aplite",
"basalt",
"chalk",
"diorite"
],
"sdkVersion": "3",
"versionCode": 1,
"versionLabel": "5.1",
"watchapp": {
"watchface": false
},
"enableMultiJS": false,
"capabilities": [
"configurable"
],
"settings": {
"configUrl": "http://smallstoneapps.s3.amazonaws.com/hearts/config/index.html?version=%s",
"apiUrl": "http://pblweb.com/api/v1/store/developers/%s.json"
}
}
}