forked from alincode/jsdc-tw-2016-webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.4 KB
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
{
"name": "webdriverio_example",
"version": "1.0.0",
"description": "JSDC.tw 2016 conference webdriverio demo",
"main": "index.js",
"homepage": "https://github.com/alincode/jsdc-tw-2016-webdriverio#readme",
"author": "alincode",
"scripts": {
"test": "wdio wdio.conf.js",
"demo": "wdio wdio.conf.js --suite demo",
"github": "wdio wdio.conf.js --suite github",
"chimp": "chimp --mocha --watch --path=test",
"jshint": "./node_modules/.bin/jshint --verbose --config .jshintrc test/",
"allure": "./node_modules/.bin/allure report generate allure-results",
"report": "./node_modules/.bin/allure report open"
},
"repository": {
"type": "git",
"url": "git+https://alincode@github.com/alincode/jsdc-tw-2016-webdriverio.git"
},
"keywords": [
"webdriverio",
"jsdc",
"e2e test"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/alincode/jsdc-tw-2016-webdriverio/issues"
},
"devDependencies": {
"allure-commandline": "^1.4.23",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.5.0",
"jshint": "^2.9.4",
"wdio-allure-reporter": "^0.1.2",
"wdio-mocha-framework": "^0.4.3",
"wdio-selenium-standalone-service": "0.0.7",
"wdio-spec-reporter": "0.0.3",
"webdriverio": "^4.2.16"
},
"dependencies": {
"randomstring": "^1.1.5"
}
}