-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.72 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@wfcd/relics",
"version": "2.0.26",
"description": "Relic Data for Warframe",
"main": "dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsdown ./src/index.ts ./src/Build.ts",
"coverage": "npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "npx install-peerdeps @wfcd/eslint-config@latest -S",
"prepack": "npm run build",
"start": "npm run build && node dist/Build.js",
"test": "nyc mocha",
"validate": "tsc --noEmit"
},
"repository": "https://github.com/WFCD/warframe-relic-data",
"keywords": [
"Warframe",
"Relics"
],
"author": "Soundofdarkness",
"license": "MIT",
"bugs": {
"url": "https://github.com/WFCD/warframe-relic-data/issues"
},
"homepage": "https://github.com/WFCD/warframe-relic-data#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^25.0.1",
"@types/node-fetch": "^2.6.2",
"@wfcd/eslint-config": "^1.2.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"mocha": "^10.0.0",
"nyc": "^18.0.0",
"precommit-hook": "^3.0.0",
"ts-mocha": "^11.1.0",
"tsconfig-paths": "^4.1.0",
"tsdown": "^0.21.0",
"tsx": "^4.21.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"node-fetch": "^2.6.7",
"warframe-patchlogs": "^2.3.3"
},
"pre-commit": [
"lint",
"test",
"validate"
],
"publishConfig": {
"provenance": true
}
}