-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 1.81 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
{
"name": "eslint-config-groupon",
"version": "11.1.0",
"description": "ESLint configuration used by Groupon",
"license": "BSD-3-Clause",
"main": "lib/index.js",
"homepage": "https://github.com/groupon/javascript",
"repository": {
"type": "git",
"url": "https://github.com/groupon/javascript"
},
"bugs": {
"url": "https://github.com/groupon/javascript/issues"
},
"scripts": {
"lint": "npm-run-all lint:*",
"lint:js": "eslint .",
"pretest": "npm-run-all pretest:*",
"test": "npm-run-all test:*",
"posttest": "npm-run-all posttest:*",
"pretest:lint": "npm-run-all lint:*",
"posttest:nlm": "nlm verify",
"test:unit": "mocha"
},
"engines": {
"node": ">=12"
},
"mocha": {
"recursive": true
},
"nlm": {
"license": {
"files": [
"lib"
]
}
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=4.20.0",
"@typescript-eslint/parser": ">=4.20.0",
"eslint": "^7.28.0",
"eslint-plugin-import": ">=2.18.2",
"eslint-plugin-mocha": ">=6.1.0",
"eslint-plugin-node": ">=11.0.0",
"eslint-plugin-prettier": ">=4.0.0",
"prettier": ">=2.0.0",
"typescript": ">=4.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^7.27.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^11.0.3",
"mocha": "^9.2.0",
"nlm": "^5.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"typescript": "^4.4.4"
},
"author": {
"name": "Jan Krems",
"email": "[email protected]"
},
"files": [
"*.js",
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}