-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) 路 1.69 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) 路 1.69 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
{
"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",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "npm run build",
"prepare": "husky",
"start": "npm run build && node dist/Build.cjs",
"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": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^26.0.0",
"chai": "^4.3.6",
"eslint": "^10.1.0",
"eslint-plugin-perfectionist": "^5.10.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"mocha": "^12.0.2",
"nyc": "^18.0.0",
"tsdown": "^0.23.0",
"tsx": "^4.21.0",
"typescript": "^5.0.4",
"typescript-eslint": "^8.58.0"
},
"publishConfig": {
"provenance": true
},
"dependencies": {
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1"
}
}