-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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
{
"name": "worldstar",
"version": "1.2.3",
"description": "Generates world map chart of GitHub stargazers",
"scripts": {
"prettier": "prettier --write \"src/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run prettier && npx arkit"
},
"author": "Marat Dyatko <i@marat.by>",
"license": "MIT",
"main": "src/index.js",
"bin": {
"worldstar": "src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyatko/worldstar.git"
},
"dependencies": {
"@google/maps": "^0.5.5",
"color": "^3.1.0",
"d3": "^5.9.2",
"d3-node": "^2.1.0",
"node-fetch": "^2.3.0",
"progress": "^2.0.3",
"svgo": "^1.2.0",
"visionscarto-world-atlas": "0.0.5",
"yargs": "^13.2.2"
},
"devDependencies": {
"@types/color": "3.0.0",
"@types/d3": "5.7.1",
"@types/node-fetch": "2.1.7",
"@types/progress": "2.0.3",
"@types/svgo": "1.0.1",
"@types/yargs": "12.0.11",
"arkit": "1.5.1",
"prettier": "1.16.4"
},
"arkit": {
"output": {
"path": "arkit.svg"
}
},
"renovate": {
"extends": [
"config:base",
":automergeAll"
]
},
"keywords": [
"chart",
"github",
"map",
"stargazer",
"statistics",
"visualisation",
"world"
]
}