forked from codeceptjs/CodeceptJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.19 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
{
"name": "codeceptjs",
"version": "1.0.3",
"description": "Modern Era Acceptance Testing Framework for NodeJS",
"homepage": "http://codecept.io",
"repository": "Codeception/codeceptjs",
"es6": true,
"author": {
"name": "DavertMik",
"email": "[email protected]",
"url": "http://codegyre.com"
},
"bin": {
"codeceptjs": "./bin/codecept.js"
},
"files": [
"bin",
"docs",
"lib",
"translations"
],
"main": "lib/index.js",
"keywords": [
"tdd",
"bdd",
"testing",
"acceptance"
],
"dependencies": {
"chalk": "^1.1.3",
"co": "^4.6.0",
"commander": "^2.9.0",
"escape-string-regexp": "^1.0.3",
"get-function-arguments": "^1.0.0",
"glob": "^6.0.1",
"inquirer": "^0.11.0",
"js-function-reflector": "^1.3.0",
"mkdirp": "^0.5.1",
"mocha": "^3.1.2",
"requireg": "^0.1.5"
},
"devDependencies": {
"@types/commander": "^2.9.2",
"@types/inquirer": "^0.0.35",
"@types/node": "^8.0.26",
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"co-mocha": "^1.1.2",
"documentation": "^4.0.0-beta1",
"faker": "^4.1.0",
"git-guppy": "^1.0.1",
"gulp": "^3.6.0",
"gulp-coveralls": "^0.1.0",
"gulp-documentation": "^2.2.0",
"gulp-eslint": "^3.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-gitmodified": "^1.1.0",
"gulp-if": "^2.0.2",
"gulp-istanbul": "^1.1.2",
"gulp-mocha": "^2.0.0",
"gulp-mustache": "^2.2.0",
"gulp-plumber": "^1.0.0",
"gulp-typescript": "^3.2.2",
"guppy-pre-commit": "^0.4.0",
"json-server": "^0.10.1",
"nightmare": "^2.5.2",
"nightmare-upload": "^0.1.1",
"nyc": "^11.1.0",
"protractor": "^5.0",
"rosie": "^1.6.0",
"selenium-webdriver": "^2.53.1",
"sinon": "^1.17.2",
"sinon-chai": "^2.12.0",
"typescript": "^2.5.2",
"unirest": "^0.5.1",
"webdriverio": ">3.4.0 <5.0.0"
},
"engines": {
"node": ">=6.11"
},
"scripts": {
"gulp": "gulp",
"prepublish": "gulp prepublish",
"test": "gulp",
"json-server": "./node_modules/json-server/bin/index.js test/data/rest/db.json -p 8010 --watch -m test/data/rest/headers.js"
},
"license": "MIT",
"typings": "typings/index.d.ts"
}