-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
{
"author": "Girma Nigusse <[email protected]>",
"bugs": {
"url": "https://github.com/e2e-boilerplate/protractor-commonjs-mocha-chai-expect/issues"
},
"dependencies": {
"chai": "4.2.0",
"mocha": "8.2.1",
"testrail-integration": "^0.1.7"
},
"description": "Protractor end-to-end test automation boilerplate. Using Commonjs, Mocha, Chai and Expect.",
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"prettier": "2.1.2",
"pretty-quick": "3.1.0"
},
"homepage": "https://github.com/e2e-boilerplate/protractor-commonjs-mocha-chai-expect#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"keywords": [
"chai",
"commonjs",
"expect",
"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-chai-expect",
"repository": {
"type": "git",
"url": "git+https://github.com/e2e-boilerplate/protractor-commonjs-mocha-chai-expect.git"
},
"scripts": {
"lint": "npx eslint --ext .js ./ --fix",
"test": "npx mocha test/mymocha.spec.js"
},
"version": "1.0.0"
}