forked from WFCD/warframe-worldstate-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.14 KB
/
package.json
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
{
"name": "warframe-worldstate-parser",
"version": "0.0.0-dev",
"description": "An Open parser for Warframe's Worldstate in Javascript",
"keywords": [
"warframe-worldstate",
"warframe"
],
"homepage": "https://github.com/wfcd/warframe-worldstate-parser#readme",
"bugs": {
"url": "https://github.com/wfcd/warframe-worldstate-parser/issues"
},
"repository": "github:wfcd/warframe-worldstate-parser",
"license": "MIT",
"author": "aliasfalse",
"contributors": [
"nspacestd (https://github.com/nspacestd)"
],
"type": "module",
"exports": {
".": {
"import": "./main.js",
"types": "./types/index.d.ts"
}
},
"main": "main.js",
"types": "./types/main.d.ts",
"directories": {
"test": "test"
},
"files": [
"lib",
"main.js",
"LICENSE",
"types"
],
"scripts": {
"build:docs": "jsdoc -c jsdoc-config.json -d docs",
"build:types": "tsc -p tsconfig.declaration.json",
"fmt": "prettier -c .",
"fmt:fix": "prettier -w .",
"lint": "eslint main.js lib/ test/",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky && npx install-peerdeps @wfcd/eslint-config@latest -S",
"prepublishOnly": "npm run build:types && npm_config_yes=true npx clean-package",
"printcov": "c8 report",
"test": "mocha",
"test:coverage": "c8 npm test",
"test:integration": "npm run test -- -g 'should parse live pc worldstate data'"
},
"prettier": "@wfcd/eslint-config/prettier",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/types": "^19.0.3",
"@types/chai": "^4.2.11",
"@types/sinon-chai": "^4.0.0",
"c8": "^10.0.0",
"chai": "^5.0.3",
"eslint-plugin-redos": "^4.4.5",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.0.0",
"mocha-minimalist-reporter": "^1.1.0",
"prettier": "^3.2.5",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"typescript": "^5.0.2"
},
"peerDependencies": {
"warframe-worldstate-data": ">=2.12.2"
},
"engines": {
"node": ">=18.19.0"
},
"overrides": {
"sinon-chai": {
"chai": "^5.0.3"
}
}
}