-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.2 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
{
"name": "postal-data",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint '*.js'",
"lint:fix": "eslint --fix '*.js'",
"format": "prettier --write '**/*.@(js|json)'"
},
"license": "CC0-1.0",
"dependencies": {
"array-shuffle": "^2.0.0",
"bent": "^7.3.12",
"cheerio": "^1.0.0-rc.9",
"delay": "^5.0.0",
"replace-buffer": "^1.2.1"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"rules": {
"no-console": "off",
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none"
}
],
"global-require": "error",
"no-new-require": "error",
"no-path-concat": "error",
"no-var": "error",
"no-process-exit": "off"
}
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": false
}
}