-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "@scoop/eslint-config-scoop",
"version": "12.0.0",
"description": "Scoop's custom eslint configuration",
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "https://github.com/TakeScoop/eslint-config-scoop.git"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint -c index.js index.js test/*.js test/tests",
"test": "NODE_ENV=test mocha --recursive --require test/injectGlobals.js --exit test/tests"
},
"author": "Scoop Technologies Inc",
"license": "MIT",
"devDependencies": {
"@hapi/code": "^8.0.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"eslint": "^8.0.0",
"mocha": "^9.0.0",
"typescript": "^4.5.2"
},
"peerDependencies": {
"eslint": "^8.0.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-implicit-dependencies": "^1.0.4",
"eslint-plugin-import": "^2.25.3"
}
}