forked from nightwatchjs/nightwatch
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "nightwatch",
"description": "A node.js bindings implementation for selenium 2.0/webdriver",
"version": "0.9.15.2",
"author": {
"name": "Andrei Rusu",
"email": "[email protected]"
},
"homepage": "http://nightwatchjs.org",
"main": "./lib/index.js",
"license": "MIT",
"bugs": "https://github.com/nightwatchjs/nightwatch/issues",
"repository": {
"type": "git",
"url": "[email protected]:nightwatchjs/nightwatch.git"
},
"dependencies": {
"chai-nightwatch": "~0.1.x",
"ejs": "0.8.3",
"lodash.clone": "3.0.3",
"lodash.defaultsdeep": "4.3.2",
"minimatch": "3.0.3",
"mkpath": "1.0.0",
"mocha-nightwatch": "3.2.2",
"optimist": "0.6.1",
"proxy-agent": "2.0.0",
"q": "1.4.1"
},
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "latest",
"grunt": "~0.4.4",
"grunt-complexity": "^0.1.7",
"grunt-contrib-jshint": "~0.10.0",
"grunt-jsonlint": "~1.0.4",
"grunt-npm-release": "latest",
"jscoverage": "latest",
"jshint": "~2.4.4",
"jsonlint": "~1.6.0",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.2.0",
"mock-spawn": "^0.2.1",
"mockery": "~1.4.0",
"nock": "~0.45.0"
},
"bin": {
"nightwatch": "./bin/nightwatch"
},
"man": "",
"scripts": {
"jshint": "./node_modules/.bin/jshint --verbose --config .jshintrc lib/",
"mocha-coverage": "jscoverage lib --exclude *.ejs,*.json && NIGHTWATCH_COV=1 ./node_modules/.bin/mocha test/src --reporter html-cov > coverage.html",
"mocha-lcov-coverage": "jscoverage lib --exclude *.ejs,*.json && NIGHTWATCH_COV=1 ./node_modules/.bin/mocha test/src --reporter mocha-lcov-reporter > lib-cov/coverage.lcov",
"test": "./node_modules/.bin/mocha test/src",
"unit-tests": "./bin/nightwatch -c test/nightwatch.json"
},
"files": [
"bin",
"examples",
"lib",
"README.md",
"LICENSE.md",
"index.js"
]
}