-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
43
44
45
46
47
48
49
50
{
"name": "@wfcd/patchlogs",
"version": "0.0.0",
"description": "All warframe patchlogs parsed to more usable JSON. Also lets you find all patchlogs for a specific item.",
"homepage": "https://github.com/WFCD/warframe-patchlogs#readme",
"bugs": {
"url": "https://github.com/WFCD/warframe-patchlogs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WFCD/warframe-patchlogs.git"
},
"license": "MIT",
"author": "Kaptard",
"contributors": [
"Tobiah <tobiah@pm.me>"
],
"type": "module",
"main": "index.js",
"scripts": {
"build": "node build/update.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky && install-peerdeps @wfcd/eslint-config@latest -S",
"test": "c8 mocha"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@types/cheerio": "^1.0.0",
"@types/progress": "^2.0.7",
"@wfcd/eslint-config": "^1.6.4",
"c8": "^11.0.0",
"chalk": "^5.6.2",
"cheerio": "^1.1.2",
"commitlint": "^20.4.1",
"husky": "^9.1.7",
"install-peerdeps": "^3.0.7",
"mocha": "^11.7.5",
"progress": "^2.0.3"
},
"engines": {
"node": ">=18.19.0",
"npm": ">=9.5.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}