-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 929 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
{
"name": "india-covid19-tracker",
"version": "1.0.0",
"main": "index.js",
"author": "Ajaykumar Prathap",
"description": "India Covid 19 State and District wise Tracker",
"license": "MIT",
"scripts": {
"compile": "rollup -c",
"minify-webtree": "uglifyjs webtree.js -o dist/webtree.min.js",
"minify-script": "npm run compile && uglifyjs dist/script.js -o dist/script.min.js",
"build": "npm run minify-webtree && npm run minify-script"
},
"keywords": [
"covid19",
"india-covid19",
"visualization",
"tracker",
"state-district",
"realtime-tracker",
"india-corona",
"corona-cases"
],
"dependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"randomcolor": "^0.5.4",
"rollup": "^2.2.0",
"uglify-es": "^3.3.9"
},
"repository": {
"type": "git",
"url": "git@github.com:pajaydev/covid19.git"
}
}