-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
89 lines (89 loc) · 3.4 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": "nemo",
"version": "4.13.1",
"description": "Wrapper to run mocha suites with injected selenium-webdriver instance",
"scripts": {
"test": "npm run lint && node test/test-helper clean && npm run nemo && npm run nemo:parallel && npm run nemo:lifecycle:suite && npm run nemo:lifecycle:test && npm run nemo:jsconfig && npm run nemo:env:override && node test/test-helper verify",
"nemo": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -B test",
"nemo:jsconfig": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -C test/jsconfig/nemo.config.js",
"nemo:debug": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -B test --inspect-brk --inspect",
"nemo:exit": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -B test -P exit -E",
"nemo:fail": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -B test -P fail -G @once@,@twice@",
"nemo:parallel": "./bin/nemo -B test -G @suite1,@suite2,@suite3,@suite4 -F",
"nemo:parallel:data": "./bin/nemo -B test -P search,pay -D",
"nemo:search": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -B test -P search -D",
"nemo:pay": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -B test -P pay -D",
"nemo:form": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -B test -P form",
"nemo:lifecycle:suite": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -B test -P driverPerSuite",
"nemo:lifecycle:test": "SELENIUM_PROMISE_MANAGER=0 ./bin/nemo -B test -P driverPerTest",
"nemo:xunit": "./bin/nemo -B test -G @suite1 -P xunit",
"nemo:customDriver": "./bin/nemo -B test -G @suite1 -P customDriver",
"nemo:env:override": "NODE_ENV=override ./bin/nemo -B test -P override",
"nemo:server": "./bin/nemo -B test -S",
"nemo:dynamic": "./bin/nemo -B test -U --url-from-cli 'https://www.wikipedia.org' -P dynamic",
"nemo:scaffold": "./bin/nemo -B scaffold -P pay,search,form",
"lint": "eslint ./bin/* ./lib/*",
"reset": "rm -rf node_modules && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krakenjs/nemo.git"
},
"bin": {
"nemo": "./bin/nemo",
"_nemo": "./bin/_nemo"
},
"keywords": [
"nemo",
"mocha",
"selenium",
"parallel"
],
"author": "grawk <[email protected]>",
"contributors": [
"grawk <[email protected]>",
"Kurt Weiberth <[email protected]>",
"Ethan Godt <[email protected]>",
"Alex Feldman <[email protected]> (https://github.com/Noyabronok)",
"Sairam Nutheti <[email protected]>",
"Bijoy Vijayachandran <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/krakenjs/nemo/issues"
},
"homepage": "https://github.com/krakenjs/nemo#readme",
"dependencies": {
"async": "^3.2.1",
"axis.js": "^1.2.1",
"cli-table": "^0.3.6",
"commander": "^4.0.0",
"common-path-start": "0.0.4",
"debug": "^4.3.2",
"express": "^4.16.4",
"express-graphql": "^0.9.0",
"filenamify": "^4.3.0",
"flatted": "^2.0.1",
"fs-extra": "^8.1.0",
"glob": "^7.2.0",
"graphql": "^14.7.0",
"influx": "^5.9.2",
"lodash.merge": "^4.6.1",
"lodash.omit": "^4.5.0",
"minimist": "^1.2.0",
"mkdirp": "^1.0.0",
"mocha": "^9.1.3",
"mochawesome": "^5.0.0",
"moment": "^2.29.1",
"nemo-core": "^1.1.3",
"nemo-view": "^3.1.1",
"threads": "^0.12.1",
"uuid": "^8.3.2",
"yargs": "^15.4.1"
},
"devDependencies": {
"chromedriver": "^94.0.0",
"eslint": "^6.0.1",
"eslint-plugin-es6-recommended": "^0.1.2"
}
}