-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
136 lines (136 loc) · 2.89 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "warframe-nexus-query",
"version": "0.0.0-dev",
"description": "Query prices form nexus-stats.com and warframe.market.",
"keywords": [
"warframe",
"trading",
"warframe-nexus",
"warframe-trading"
],
"homepage": "https://github.com/WFCD/warframe-nexus-query#README",
"bugs": {
"url": "https://github.com/WFCD/warframe-nexus-query/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/WFCD/warframe-nexus-query.git"
},
"license": "Apache-2.0",
"author": "tobitenno",
"type": "module",
"main": "index.js",
"directories": {
"test": "test"
},
"files": [
"lib",
"index.js",
"basedir.js"
],
"scripts": {
"build:docs": "jsdoc -c jsdoc-config.json -d docs",
"coverage": "npm test && c8 report --reporter=text-lcov | coveralls",
"lint": "eslint index.js lib/ test/",
"lint:fix": "eslint index.js lib/ test/ --fix",
"prepare": "husky && npx install-peerdeps @wfcd/eslint-config@latest -S",
"test": "c8 mocha"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [0]
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix"
],
"package*.json": [
"prettier --write",
"npm dedupe",
"npx sort-package-json"
],
"*.{json,yaml,yml},!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": {
"extends": "@wfcd/eslint-config/esm",
"rules": {
"no-underscore-dangle": [
"error",
{
"allow": [
"__basedir"
]
}
]
}
},
"eslintIgnore": [
".github/**",
"docs/**",
"resources/**",
"types/**"
],
"release": {
"branch": "master"
},
"mocha": {
"bail": true,
"exit": true,
"slow": 10000,
"spec": "test/test.js",
"timeout": 30000
},
"c8": {
"exclude": [
"test/*",
"lib/nexus/*"
],
"reporter": [
"lcov",
"text"
],
"skip-full": true
},
"dependencies": {
"get-image-colors": "^4.0.1",
"image-downloader": "^4.0.2",
"json-fetch-cache": "^1.2.6",
"json-query": "^2.2.2",
"node-md-config": "^2.0.1",
"numeral": "^2.0.6"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/json-query": "^2.2.0",
"@wfcd/eslint-config": "^1.6.1",
"c8": "^10.1.2",
"chai": "^5.0.3",
"coveralls": "^3.1.1",
"husky": "^9.0.11",
"install-peerdeps": "^3.0.3",
"lint-staged": "^15.2.2",
"mocha": "^10.2.0",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=18",
"npm": ">=8.19"
}
}