forked from star-history/star-history
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1001 Bytes
/
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
{
"name": "star_history",
"version": "1.0.0",
"description": "The missing star history graph of github projects",
"main": "index.js",
"scripts": {
"startWebsite": "parcel website/index.html",
"buildWebsite": "parcel build website/index.html --no-source-maps",
"startExtension": "parcel watch extension/src/index.js -d extension/build",
"buildExtension": "rm -r extension/build && parcel build extension/src/index.js -d extension/build --no-source-maps"
},
"keywords": [
"github",
"star",
"history",
"foss",
"metrics",
"open source",
"charts"
],
"browserslist": [
"since 2021-12"
],
"author": "anilmurty",
"license": "MIT",
"dependencies": {
"axios": "^0.18.1",
"chart.xkcd": "^1.0.10",
"d3": "^3.5.17",
"notie": "^4.3.1",
"nvd3": "^1.8.6"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/runtime": "^7.6.3",
"parcel": "^1.12.3"
}
}