This repository was archived by the owner on Jul 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "local-addon-stats",
"productName": "Local Stats",
"version": "1.2.0",
"author": "Flywheel <engineering@getflywheel.com>",
"contributors": [
{
"name": "Clay Griffiths",
"email": "clay@getflywheel.com"
}
],
"keywords": [
"local-addon",
"stats"
],
"bgColor": "#ffde6b",
"icon": "icon.svg",
"description": "Graphs and resource stats for Local by Flywheel sites.",
"renderer": "lib/renderer.js",
"repository": {
"type": "git",
"url": "https://github.com/getflywheel/local-addon-stats/"
},
"bugs": {
"url": "https://github.com/getflywheel/local-addon-stats/issues"
},
"license": "MIT",
"scripts": {
"build": "babel src -d lib",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@getflywheel/eslint-config-local": "1.0.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1"
},
"dependencies": {
"lodash.round": "^4.0.4",
"lodash.throttle": "^4.1.1",
"smoothie": "^1.27.0"
},
"bundledDependencies": [
"lodash.throttle",
"lodash.round",
"smoothie"
],
"engines": {
"local-by-flywheel": "^3.0.0"
}
}