-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 982 Bytes
/
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
{
"name": "eslint-config-openlayers",
"version": "20.0.0",
"description": "ESLint configuration for OpenLayers",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"rules/**/*"
],
"repository": {
"type": "git",
"url": "git://github.com/openlayers/eslint-config-openlayers.git"
},
"bugs": {
"url": "https://github.com/openlayers/eslint-config-openlayers/issues"
},
"scripts": {
"lint": "eslint . examples",
"pretest": "npm run lint",
"test": "vitest --run"
},
"license": "MIT",
"devDependencies": {
"eslint": "^9.16.0",
"eslint-vitest-rule-tester": "^0.7.1",
"vitest": "^2.1.8"
},
"dependencies": {
"@openlayers/doctrine": "^2.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-prettier": "^5.2.1",
"minimatch": "^10.0.1",
"prettier": "^3.4.2"
}
}