-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
85 lines (85 loc) · 2.07 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
{
"name": "warframe-worldstate-data",
"version": "0.0.0-development",
"description": "Warframe data for use with warframe-worldstate-parser",
"keywords": [
"warframe-worldstate",
"javascript",
"warframe"
],
"homepage": "https://github.com/wfcd/warframe-worldstate-data#readme",
"bugs": {
"url": "https://github.com/wfcd/warframe-worldstate-data/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wfcd/warframe-worldstate-data.git"
},
"license": "MIT",
"author": "tobitenno",
"contributors": [
"tobitenno",
"cagatayldzz",
"scruffyrules",
"nspacestd",
"dsinn",
"msaracevic",
"Markcreator",
"delfunua",
"esunder",
"dbarbuzzi",
"ViriatoLusitano",
"iPeer",
"IhToN",
"OrcusCZ",
"DaxterSpeed",
"sgkoishi",
"Hikoaki",
"Tithen-Firion"
],
"type": "module",
"exports": {
".": "./exports.js",
"./utilities": "./tools/utilities.js"
},
"main": "exports.js",
"directories": {
"test": "test"
},
"scripts": {
"coverage": "npm test && c8 report --reporter=text-lcov | coveralls",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore . --fix",
"prepare": "husky && npx install-peerdeps @wfcd/eslint-config@latest -S",
"sort": "./tools/sortLanguages.js",
"test": "c8 mocha",
"validate": "npm run lint:fix && npm run test && git add -u ."
},
"prettier": "@wfcd/eslint-config/prettier",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/chai": "^5.0.0",
"@types/chai-json-schema": "^1.4.9",
"c8": "^10.1.2",
"chai": "^5.0.3",
"chai-json": "^1.0.0",
"chai-json-schema-ajv": "^5.2.4",
"coveralls": "^3.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^11.0.1",
"prettier": "^3.2.5",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=18.19.0"
},
"overrides": {
"sinon-chai": {
"chai": "^5.0.3"
}
}
}