-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
78 lines (78 loc) · 2.86 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "strava-enhancement-suite",
"description": "A browser extension to enhance Strava.com",
"homepage": "https://github.com/lamby/strava-enhancement-suite#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lamby/strava-enhancement-suite.git"
},
"scripts": {
"append-beta-to-name": "dot-json extension/manifest.json name 'Strava Enhancement Suite BETA'",
"cypress:run": "cypress run --browser chrome",
"cypress:open": "cypress open",
"docs:html": "eleventy --input=docs-src --output=docs --formats=ejs",
"docs:styles": "sass --no-source-map docs-src/styles/style.scss:docs/styles/style.css",
"docs:build": "npm run docs:html & npm run docs:styles",
"docs:watch": "npm run docs:html -- --serve & npm run docs:styles -- --watch",
"readme:build": "node tools/build-docs.js",
"readme:watch": "chokidar 'README.ejs' -c 'npm run readme:build'",
"icons:generate": "for x in 16 48 128; do convert extension/icons/original.png -resize ${x}x${x} extension/icons/icon${x}.png ; done",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"release:cws": "webstore upload --source=extension --auto-publish",
"reset-manifest": "git checkout HEAD -- extension/manifest.json",
"test": "ava",
"test:watch": "ava --watch",
"update-version": "dot-json extension/manifest.json version $(date -u +%y.%-m.%-d.%-H%M)",
"zip": "cd extension && zip -r ../build.zip ./"
},
"devDependencies": {
"@11ty/eleventy": "~0.11.0",
"ava": "~3.10.1",
"bootstrap": "~4.5.2",
"chokidar-cli": "~2.1.0",
"chrome-webstore-upload-cli": "~1.2.0",
"cypress": "~4.10.0",
"cypress-browser-extension-plugin": "Strajk/cypress-browser-extension-plugin#a43dd46de57d0876b2e247fef3d69940a0df52d1",
"cypress-dotenv": "~1.2.2",
"cypress-skip-and-only-ui": "~1.2.6",
"dot-json": "~1.2.0",
"dotenv": "~8.2.0",
"ejs": "~3.1.2",
"ejs-cli": "~2.2.0",
"eslint": "~7.4.0",
"eslint-plugin-cypress": "~2.11.1",
"eslint-plugin-unicorn": "~21.0.0",
"sass": "~1.26.10"
},
"meta": {
"name": "Strava Enhancement Suite",
"chromeWebStoreId": "egelalffpmicecakegglddmhlbdiemlg",
"chromeWebStoreIdBeta": "oaioodcklbhlefejbglemgjndhckgklf",
"mainFeatures": [
"Dashboard filtering",
"Keyboard navigation",
"Enhanced Training log",
"Repeated segments",
"Separate notifications",
"Unit conversion tooltips",
"Links to external services",
"Improved activity upload",
"Improved pagination"
],
"assurances": [
{
"title": "No tracking",
"description": "Absolutely no tracking nor ads"
},
{
"title": "Open-souce",
"description": "Source code on GitHub"
},
{
"title": "Customizable",
"description": "All features can be enabled or disabled"
}
]
}
}