This repository has been archived by the owner on Feb 28, 2018. It is now read-only.
forked from OpenLMIS/openlmis-functional-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "openlmis-functional-tests",
"version": "1.0.0",
"description": "OpenLMIS Functional Tests - based on cucumber-boilerplate project",
"homepage": "https://github.com/OpenLMIS/openlmis-functional-tests",
"scripts": {
"clean": "rm -Rf ./build",
"local-webserver": "forever start -s ./node_modules/.bin/http-server ./demo-app -s",
"test": "npm run test:validate && npm run test:features",
"test:features": "npm run local-webserver & (wdio wdio.conf.js; wdio_ret=$?; forever stopall; exit $wdio_ret)",
"test:validate": "eslint 'src/**/*.js' 'test/**/*.js!(setup.js)'"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenLMIS/openlmis-functional-tests"
},
"keywords": [
"webdriverio",
"cucumber",
"test",
"selenium",
"openlmis"
],
"license": "AGPL-3.0",
"dependencies": {
"babel-preset-es2015": "~6.24.0",
"babel-register": "~6.26.0",
"chai": "~4.1.2",
"glob": "~7.1.2",
"wdio-cucumber-framework": "~1.0.2",
"wdio-phantomjs-service": "~0.2.2",
"wdio-selenium-standalone-service": "~0.0.9",
"wdio-spec-reporter": "~0.1.3",
"wdio-junit-reporter": "~0.3.1",
"webdriverio": "4.9.8",
"yarn": "^1.3.2",
"request": "~2.81.0"
},
"devDependencies": {
"babel-jest": "~21.2.0",
"babel-core": "~6.0.0",
"babel-polyfill": "~6.26.0",
"eslint": "~4.11.0",
"eslint-config-airbnb-base": "~12.1.0",
"eslint-plugin-import": "~2.8.0",
"forever": "~0.15.3",
"http-server": "~0.10.0",
"wdio-devtools-service": "0.1.1",
"find-process": "1.1.0"
}
}