-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 1009 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
{
"name": "dekontaminasi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run ping && npm run cache && npm run hospitals && npm run stats && npm run news && npm run hoaxes && npm run indexer",
"ping": "node src/ping.js",
"cache": "node src/cache.js",
"hospitals": "node src/hospitals.js",
"stats": "node src/stats.js",
"news": "node src/news.js",
"hoaxes": "node src/hoaxes.js",
"indexer": "node src/indexer.js",
"test": "npm run check-format",
"check-format": "prettier --check \"**/*.js\"",
"format-code": "prettier --write \"**/*.js\""
},
"keywords": [],
"author": "Ariya Hidayat",
"license": "MIT",
"dependencies": {
"@ariya/penjabarberita": "~1.0.6"
},
"devDependencies": {
"prettier": "~2.0.5"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"quoteProps": "consistent",
"singleQuote": true,
"trailingComma": "none"
},
"volta": {
"node": "16.16.0"
}
}