-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "@slimio/eslint-config",
"version": "5.0.0",
"description": "Slimio ESLint configuration",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"prepublishOnly": "pkg-ok",
"test": "cross-env psp && nyc --reporter=lcov node test/test.js",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/eslint-config.git"
},
"keywords": [
"ESLint",
"Config"
],
"files": [
"index.js",
"src/*.js"
],
"author": "SlimIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlimIO/eslint-config/issues"
},
"homepage": "https://github.com/SlimIO/eslint-config#readme",
"nyc": {
"check-coverage": false
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@iarna/toml": "^2.2.5",
"eslint": "^8.1.0",
"eslint-plugin-jsdoc": "^37.0.3"
},
"devDependencies": {
"@slimio/psp": "^0.12.3",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"nyc": "^15.1.0",
"pkg-ok": "^2.3.1"
}
}