-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "eslint-plugin-cucumber",
"version": "2.0.0",
"description": "eslint rules for cucumber steps",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"cucumber"
],
"author": "Darrin Holst<darrinholst@gmail.com>",
"contributors": [
"Darrin Holst <darrinholst@gmail.com>",
"David Goss <dvdgoss@gmail.com>",
"Colin Wren <colin@gimpneek.com>",
"Matt Travi <programmer@travi.org>",
"Piotr Kuczynski <piotr.kuczynski@gmail.com>",
"Ian Wilkinson <null@sgtwilko.f9.co.uk>"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/darrinholst/eslint-plugin-cucumber/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/darrinholst/eslint-plugin-cucumber.git"
},
"main": "lib/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"format": "prettier --loglevel warn --write \"**/*.js\"",
"test": "mocha tests/**/*.js",
"verify": "npm run format && npm run test"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"eslint": "^8.9.0",
"mocha": "^6.2.2",
"prettier": "^1.18.2"
},
"prettier": {
"printWidth": 80,
"singleQuote": true,
"bracketSpacing": false
}
}