forked from codeceptjs/CodeceptJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.24 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
{
"name": "codeceptjs",
"version": "1.3.2",
"description": "Modern Era Acceptance Testing Framework for NodeJS",
"keywords": [
"acceptance",
"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",
"lint": "eslint bin/ examples/ lib/ test/ translations/",
"lint-fix": "eslint bin/ examples/ lib/ test/ translations/ --fix",
"docs": "gulp docs",
"test": "mocha test/unit --recursive && mocha test/runner --recursive"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.16.0",
"css-to-xpath": "^0.1.0",
"cucumber-expressions": "^6.0.1",
"escape-string-regexp": "^1.0.3",
"fn-args": "^3.0.0",
"gherkin": "^5.1.0",
"glob": "^6.0.1",
"inquirer": "^0.11.0",
"mkdirp": "^0.5.1",
"mocha": "^4.1.0",
"parse-function": "^5.2.10",
"promise-retry": "^1.1.1",
"requireg": "^0.1.8",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"@types/inquirer": "^0.0.35",
"@types/node": "^8.10.21",
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"co-mocha": "^1.2",
"documentation": "^4.0.0-beta1",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.13.0",
"faker": "^4.1.0",
"gulp": "^3.9.1",
"gulp-documentation": "^2.2.0",
"gulp-mustache": "^2.2.0",
"json-server": "^0.10.1",
"nightmare": "^3.0.0",
"nyc": "^11.9.0",
"protractor": "^5.3.2",
"puppeteer": "^1.6.0",
"rosie": "^1.6.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.14.0",
"typescript": "^2.9.2",
"unirest": "^0.5.1",
"webdriverio": "^4.13.1",
"xmldom": "^0.1.27",
"xpath": "0.0.27"
},
"engines": {
"node": ">=8.9.1",
"npm": ">=5.6.0"
},
"es6": true
}