forked from smallstoneapps/linked-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 870 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 870 Bytes
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
{
"name": "@rebble/linked-list",
"version": "1.5.1",
"description": "Pebble library for doing linked lists",
"main": "src/c/linked-list.c",
"directories": {
"test": "tests"
},
"keywords": [
"pebble-package"
],
"scripts": {
"test": "make"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pebble-dev/linked-list.git"
},
"author": "Matthew Tole <pebble@matthewtole.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pebble-dev/linked-list/issues"
},
"homepage": "https://github.com/pebble-dev/linked-list#readme",
"pebble": {
"projectType": "package",
"sdkVersion": "3",
"targetPlatforms": [
"aplite",
"basalt",
"chalk",
"diorite",
"emery",
"flint",
"gabbro"
]
},
"files": [
"dist.zip",
"src/",
"include/"
]
}