-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 KB
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
{
"name": "warframe-drop-data",
"version": "0.0.1",
"description": "Converts the official Warframe drop data into something useable.",
"repository": "https://github.com/WFCD/warframe-drop-data",
"license": "MIT",
"author": "",
"type": "module",
"main": "generate.js",
"scripts": {
"build": "npm start && cp -R data site",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky && npx install-peerdeps @wfcd/eslint-config@latest -S",
"serve": "npx http-server site -p $PORT",
"serve:dev": "npx nodemon",
"start": "node generateData.js"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/eslint-parser": "^7.28.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-syntax-import-assertions": "^7.27.1",
"@babel/preset-env": "^7.28.3",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@wfcd/eslint-config": "^1.6.3",
"cheerio": "^1.1.2",
"colors": "1.4.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"progress": "^2.0.3"
},
"engines": {
"node": ">=22.19.0",
"npm": ">=10.9.3"
}
}