-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"author": "Girma Nigusse <xgirma@gmail.com>",
"bugs": {
"url": "https://github.com/e2e-boilerplate/protractor-commonjs-mocha-assert/issues"
},
"dependencies": {
"mocha": "8.4.0",
"protractor": "7.0.0"
},
"description": "Protractor end-to-end test automation boilerplate. Using Commonjs, Mocha and Assert.",
"devDependencies": {
"eslint": "7.31.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.3.2",
"pretty-quick": "3.1.1"
},
"homepage": "https://github.com/e2e-boilerplate/protractor-commonjs-mocha-assert#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"keywords": [
"assert",
"commonjs",
"mocha",
"protractor",
"protractor automation",
"protractor boilerplate",
"protractor example",
"e2e",
"e2e tests",
"boilerplate",
"integration test",
"test automation",
"javascript"
],
"license": "MIT",
"lint-staged": {
"*.{js}": [
"eslint --fix",
"prettier --write"
]
},
"name": "protractor-commonjs-mocha-assert",
"repository": {
"type": "git",
"url": "git+https://github.com/e2e-boilerplate/protractor-commonjs-mocha-assert.git"
},
"scripts": {
"lint": "npx eslint --ext .js ./ --fix",
"test": "npx protractor",
"update:webdriver": "npx webdriver-manager update --gecko false"
},
"version": "1.0.0"
}