-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "@coriou/easy-covid-data",
"version": "0.0.11",
"private": false,
"description": "A tool to generate easy to use data related to the Covid-19 pandemic",
"repository": "https://github.com/Coriou/easy-covid-data.git",
"license": "ISC",
"author": "Benjamin Coriou",
"main": "build/main.js",
"scripts": {
"build": "backpack build",
"deploy": "np --no-2fa",
"dev": "backpack",
"format": "prettier --write '**/*.{js,json}' && prettier --tab-width 2 --use-tabs false --write '**/*.md'",
"lint": "eslint --ext .js src",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.md": [
"prettier --use-tabs false --tab-width 2 --write"
],
"**/*.{js,json}": [
"prettier --write"
],
"**/*.{js}": [
"lint"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"axios": "^0.20.0",
"country-json": "^1.1.0",
"data-forge": "^1.8.11",
"topojson": "^3.0.2",
"world-atlas": "^2.0.2"
},
"devDependencies": {
"backpack-core": "^0.8.4",
"eslint": "^7.10.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"np": "^6.5.0",
"prettier": "^2.1.2",
"sort-package-json": "^1.46.0"
}
}