-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
74 lines (74 loc) · 1.85 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
{
"name": "eslint-plugin-protractor",
"description": "ESLint rules for Protractor",
"version": "0.0.0-semantically-released",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"pretest": "standard && eslint .",
"test": "mocha",
"coverage": "nyc --reporter=html ./node_modules/mocha/bin/_mocha -R spec",
"watch": "mocha --watch",
"semantic-release": "semantic-release",
"coveralls": "nyc --reporter=text-lcov ./node_modules/mocha/bin/_mocha -R spec | coveralls && rm -rf ./coverage"
},
"engines": {
"node": ">=8"
},
"standard": {
"globals": [
"describe",
"it",
"before"
]
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"protractor"
],
"author": "Alexander Afanasyev <[email protected]>",
"contributors": [
"Darin Kadrioski <[email protected]>",
"David Raynes <[email protected]>",
"Raul Gallegos <[email protected]>",
"David Sveningsson <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alecxe/eslint-plugin-protractor.git"
},
"bugs": {
"url": "https://github.com/alecxe/eslint-plugin-protractor/issues"
},
"homepage": "https://github.com/alecxe/eslint-plugin-protractor",
"peerDependencies": {
"eslint": ">=2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"commitizen": "^3.1.1",
"coveralls": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"marked": "^0.7.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"semantic-release": "^17.2.3",
"standard": "^12.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"css-selector-parser": "^1.3.0",
"multimatch": "^4.0.0"
}
}