-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
{
"name": "walnutjs",
"version": "2.0.3",
"description": "Walnut Framework - Automated BDD Tests for Web Applications",
"main": "index.js",
"bin": {
"walnut": "bin/walnut"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/mmendesas/walnutjs.git"
},
"keywords": [
"walnut",
"testing",
"tests",
"cucumber",
"bdd",
"gherkin",
"automation testing"
],
"author": "Marcio Mendes <mmendes.as@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"chai": "^4.2.0",
"commander": "^2.20.0",
"cucumber": "^5.1.0",
"cucumber-html-reporter": "^5.0.0",
"fs-plus": "^3.1.1",
"jsonpath": "^1.0.1",
"protractor": "^5.4.2",
"protractor-cucumber": "^0.1.8",
"protractor-cucumber-framework": "^1.0.2",
"selenium-webdriver": "^4.0.0-alpha.4",
"soap": "^0.27.1",
"winston": "^3.2.1",
"xmldom": "^0.1.27",
"xpath": "0.0.24"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"generate-changelog": "^1.8.0",
"jest": "^24.8.0"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}