-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.32 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
{
"name": "solid-fitness",
"version": "0.0.1",
"description": "Library for fitness data in solid store",
"main": "./index.js",
"files": [],
"scripts": {
"build": "echo no build",
"postversion": "git push origin master --follow-tags",
"prepublish": "npm run build",
"standard": "standard",
"test": "npm run standard"
},
"nonScripts": {
"build-lib": "babel src -d lib",
"build": "npm run build-lib"
},
"repository": {
"type": "git",
"url": "https://github.com/linkeddata/solid-fitness"
},
"keywords": [
"solid",
"decentralized",
"widgets",
"ui",
"web",
"rdf",
"ldp",
"linked",
"data",
"fitness",
"strava"
],
"author": "Tim Berners-Lee <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/linkeddata/solid-ui/issues"
},
"homepage": "https://github.com/linkeddata/solid-fitness",
"dependencies": {
"rdflib": "^0.16.3",
"solid-auth-client": "^1.0.0",
"solid-auth-tls": "^0.1.2",
"strava-v3": "^1.14.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"standard": "^10.0.2"
},
"standard": {
"globals": [
"$rdf",
"tabulator",
"QUnit",
"$SolidTestEnvironment",
"AudioContext"
]
}
}