-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
125 lines (125 loc) · 3.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "warframe-drop-data",
"version": "0.0.1",
"description": "Converts the official Warframe drop data into something useable.",
"main": "generate.js",
"scripts": {
"start": "node generateData.js",
"serve": "npx http-server site -p $PORT",
"serve:dev": "npx nodemon",
"build": "npm start && cp -R data site",
"lint": "eslint generateData.js lib/",
"lint:fix": "eslint generateData.js lib/ --fix"
},
"author": "",
"license": "MIT",
"nodemonConfig": {
"env": {
"PORT": 3000
},
"exec": "npm start -- -force; cp -R --remove-destination data site; npm run serve",
"watch": [
"lib"
]
},
"repository": "https://github.com/WFCD/warframe-drop-data",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/preset-env": "^7.16.4",
"cheerio": "^1.0.0-rc.3",
"colors": "1.4.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"node-fetch": "^2.6.1",
"progress": "^2.0.3"
},
"eslintIgnore": [
"site/*",
"data/*"
],
"eslintConfig": {
"extends": "airbnb-base",
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"babelOptions": {
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-private-methods",
"@babel/plugin-syntax-import-assertions"
]
}
},
"rules": {
"valid-jsdoc": [
"error",
{
"requireReturn": false,
"requireReturnDescription": false,
"preferType": {
"String": "string",
"Number": "number",
"Boolean": "boolean",
"Function": "function",
"object": "Object",
"date": "Date",
"error": "Error"
},
"prefer": {
"return": "returns"
}
}
],
"strict": [
"error",
"safe"
],
"linebreak-style": "off",
"no-restricted-syntax": [
"off"
],
"no-await-in-loop": "off",
"import/no-unresolved": 0,
"no-useless-escape": 0,
"func-names": 0,
"arrow-parens": [
2,
"as-needed",
{
"requireForBlockBody": true
}
],
"no-underscore-dangle": "off",
"no-console": "off",
"import/no-extraneous-dependencies": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"global-require": "off",
"consistent-return": "off",
"import/extensions": [
"error",
"always"
]
}
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-private-methods",
"@babel/plugin-syntax-import-assertions"
]
},
"engines": {
"node": ">=14.17.0",
"npm": ">= 6.14.14"
},
"type": "module"
}