-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.68 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
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
{
"name": "worldstate-emitter",
"version": "0.0.0-dev",
"description": "Event emitter for Warframe worldstate & other events - TypeScript support included",
"keywords": [
"warframe",
"worldstate",
"event",
"emitter",
"typescript",
"types"
],
"homepage": "https://wfcd.github.io/worldstate-emitter/",
"bugs": {
"url": "https://github.com/wfcd/worldstate-emitter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WFCD/worldstate-emitter.git"
},
"license": "Apache-2.0",
"author": "tobiah <tobiah@protonmail.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"directories": {
"test": "test/specs"
},
"files": [
"dist/",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"build:docs": "typedoc",
"precoverage": "npm run build",
"coverage": "c8 mocha --config .mocharc.integration.yml && npm run report && npx coveralls < coverage/lcov.info",
"dev": "nodemon --exec tsx test/tester.ts",
"lint": "biome check",
"lint:fix": "biome check --write",
"prepare": "husky",
"prepublishOnly": "npm run build",
"report": "c8 report --reporter=text-lcov > coverage/lcov.info",
"pretest": "npm i --no-save warframe-worldstate-data@^3 warframe-worldstate-parser@^5 winston@^3 && npm run build",
"test": "LOG_LEVEL=silent mocha",
"test:all": "npm test && npm run test:integration",
"pretest:integration": "npm run pretest",
"test:integration": "LOG_LEVEL=silent mocha --config .mocharc.integration.yml"
},
"dependencies": {
"cron": "^4.4.0",
"rss-feed-emitter": "^3.2.4",
"sanitize-html": "^2.17.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.2",
"@types/sanitize-html": "^2.16.0",
"@types/sinon": "^21.0.0",
"@types/twitter": "^1.7.4",
"c8": "^11.0.0",
"chai": "^6.2.2",
"husky": "^9.1.7",
"lint-staged": "^17.0.3",
"mocha": "^11.7.5",
"nodemon": "^3.1.11",
"reflect-metadata": "^0.2.2",
"sinon": "^22.0.0",
"tsdown": "^0.22.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.16",
"typescript": "^6.0.2"
},
"peerDependencies": {
"warframe-worldstate-data": "^3.x",
"warframe-worldstate-parser": "^5.3.9",
"winston": "^3.19.0"
},
"engines": {
"node": ">=20.10.0"
},
"publishConfig": {
"provenance": true
}
}