forked from codeceptjs/CodeceptJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.15 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "codeceptjs",
"version": "2.3.1",
"description": "Modern Era Acceptance Testing Framework for NodeJS",
"keywords": [
"acceptance",
"end2end",
"bdd",
"tdd",
"testing"
],
"homepage": "https://codecept.io",
"license": "MIT",
"author": {
"name": "DavertMik",
"email": "[email protected]",
"url": "http://codegyre.com"
},
"files": [
"bin",
"docs",
"lib",
"translations"
],
"main": "lib/index.js",
"typings": "typings/index.d.ts",
"bin": {
"codeceptjs": "./bin/codecept.js"
},
"repository": "Codeception/codeceptjs",
"scripts": {
"build": "tsc -p ./",
"json-server": "./node_modules/json-server/bin/index.js test/data/rest/db.json -p 8010 --watch -m test/data/rest/headers.js",
"json-server:graphql": "node test/data/graphql/index.js",
"lint": "eslint bin/ examples/ lib/ test/ translations/ gulpfile.js",
"lint-fix": "eslint bin/ examples/ lib/ test/ translations/ gulpfile.js --fix",
"docs": "gulp docs",
"test": "mocha test/unit --recursive && mocha test/runner --recursive",
"dev:graphql": "nodemon test/data/graphql/index.js"
},
"dependencies": {
"allure-js-commons": "^1.3.2",
"axios": "^0.19.0",
"chalk": "^1.1.3",
"commander": "^2.20.0",
"css-to-xpath": "^0.1.0",
"cucumber-expressions": "^6.6.2",
"escape-string-regexp": "^1.0.3",
"figures": "^2.0.0",
"fn-args": "^4.0.0",
"fs-extra": "^8.0.1",
"gherkin": "^5.1.0",
"glob": "^6.0.1",
"inquirer": "^6.4.1",
"js-beautify": "^1.10.0",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.1",
"mkdirp": "^0.5.1",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"ms": "^2.1.2",
"parse-function": "^5.2.10",
"promise-retry": "^1.1.1",
"requireg": "^0.1.8",
"resq": "^1.5.0",
"semver": "^6.2.0",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"@codeceptjs/detox-helper": "^1.0.1",
"@pollyjs/adapter-puppeteer": "^2.5.0",
"@pollyjs/core": "^2.5.0",
"@types/inquirer": "^0.0.35",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.48",
"@wdio/sauce-service": "^5.8.0",
"@wdio/selenium-standalone-service": "^5.8.0",
"@wdio/utils": "^5.8.0",
"apollo-server-express": "^2.8.1",
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"documentation": "^8.1.2",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-mocha": "^5.3.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"graphql": "^14.4.2",
"husky": "^1.2.1",
"json-server": "^0.10.1",
"nightmare": "^3.0.2",
"nodemon": "^1.19.1",
"protractor": "^5.4.1",
"puppeteer": "^1.18.1",
"rosie": "^1.6.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.14.0",
"testcafe": "^1.2.1",
"typescript": "^2.9.2",
"wdio-docker-service": "^1.5.0",
"webdriverio": "^5.10.9",
"xmldom": "^0.1.27",
"xpath": "0.0.27"
},
"engines": {
"node": ">=8.9.1",
"npm": ">=5.6.0"
},
"es6": true,
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm run test"
}
}
}