-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.68 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@wfcd/arsenal-parser",
"version": "0.0.1",
"description": "Parser for Digital Extreme's Twitch Arsenal Extension data",
"keywords": [
"warframe",
"parser",
"twitch",
"arsenal"
],
"repository": "https://github.com/wfcd/arsenal-parser",
"license": "MIT",
"author": "NicksWorld",
"contributors": [
"TobiTenno <[email protected]>"
],
"type": "module",
"exports": {
".": {
"import": "./src/ArsenalParser.js",
"types": "./types/src/ArsenalParser.d.ts"
}
},
"main": "src/ArsenalParser.js",
"types": "./types/src/ArsenalParser.d.ts",
"files": [
"src",
"LICENSE",
"README.md",
"types"
],
"scripts": {
"build:docs": "jsdoc -c .github/docs/conf.json -d docs",
"build:types": "tsc -p tsconfig.declaration.json",
"coverage": "npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"prepare": "husky && install-peerdeps @wfcd/eslint-config@latest -S",
"prepublishOnly": "npm run build:types",
"test": "c8 mocha"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [0]
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"npm test"
],
"package*.json": [
"prettier --write",
"npm dedupe",
"npx sort-package-json"
],
"*.{json,yml,yaml},!package*.json": [
"prettier --write"
]
},
"babel": {
"plugins": [
"@babel/plugin-transform-class-properties",
"@babel/plugin-transform-private-methods"
],
"presets": [
"@babel/preset-env"
]
},
"prettier": "@wfcd/eslint-config/prettier",
"eslintConfig": {
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module"
},
"extends": "@wfcd/eslint-config/esm"
},
"release": {
"branches": [
"main"
]
},
"mocha": {
"exit": true,
"spec": "test/**/*.spec.js"
},
"c8": {
"reporter": [
"lcov",
"text"
],
"skip-full": true
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/chai": "^5.0.0",
"@wfcd/eslint-config": "^1.6.1",
"c8": "^10.1.2",
"chai": "^5.1.0",
"chai-json-equal": "^0.0.1",
"coveralls": "^3.1.0",
"husky": "^9.0.11",
"install-peerdeps": "^3.0.3",
"lint-staged": "^15.2.2",
"mocha": "^10.0.0",
"prettier": "^3.2.5",
"typescript": "^5.0.2"
},
"peerDependencies": {
"warframe-items": ">=1.1262.0",
"warframe-worldstate-data": ">=2.3.1"
},
"engines": {
"node": ">=18.19.0"
},
"public": true
}