-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
66 lines (66 loc) · 2.51 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
{
"name": "testing",
"private": true,
"babel": {
"env": {
"COVERAGE": {
"plugins": [
"istanbul"
]
}
}
},
"scripts": {
"chimp-watch": "chimp --ddp=http://localhost:3000 --watch --mocha --path=tests",
"chimp-test": "chimp --mocha --path=tests",
"test-e2e": "nightwatch",
"test-chromeHide": "nightwatch -e chromeHide",
"test-geckoHide": "nightwatch -e geckoHide",
"test": "TEST_WATCH=1 meteor test --driver-package meteortesting:mocha",
"local-env": "meteor run --settings settings.local.json",
"dev-docker-env": "meteor run --settings settings.dev-docker.json",
"coverage:unit": "BABEL_ENV=COVERAGE TEST_BROWSER_DRIVER=puppeteer COVERAGE=1 COVERAGE_OUT_HTML=1 COVERAGE_APP_FOLDER=$PWD/ meteor test --once --driver-package meteortesting:mocha",
"coverage:unit_old": "BABEL_ENV=COVERAGE TEST_BROWSER_DRIVER=puppeteer COVERAGE=1 COVERAGE_OUT_HTML=1 COVERAGE_OUT_JSON=1 COVERAGE_OUT_JSON_SUMMARY=1 COVERAGE_OUT_TEXT_SUMMARY=1 COVERAGE_OUT_COVERAGE=1 COVERAGE_VERBOSE=1 COVERAGE_APP_FOLDER=$PWD/ meteor test --once --driver-package meteortesting:mocha",
"coverage:watch": "BABEL_ENV=COVERAGE COVERAGE=1 COVERAGE_VERBOSE=1 COVERAGE_APP_FOLDER=$PWD/ TEST_WATCH=1 meteor test --driver-package meteortesting:mocha",
"test-jenkins": "JUNIT_REPORT_PATH=reports/report.xml mocha --colors --reporter mocha-jenkins-reporter"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"babel-runtime": "^6.26.0",
"bcrypt": "^1.0.3",
"braces": ">=2.3.1",
"buffer": "^5.2.1",
"bull": "^3.10.0",
"live-mutex": "^0.2.1",
"meteor-node-stubs": "^0.2.11",
"mongo": "^0.1.0",
"mongodb": "^3.3.0-beta2",
"npm": "^6.10.1",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"@types/bull": "^3.10.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.2",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"chromedriver": "^2.45.0",
"codacy-coverage": "^2.0.0",
"coveralls": "^3.0.6",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-meteor": "^4.1.4",
"eslint-plugin-react": "^6.10.3",
"geckodriver": "^1.16.2",
"mocha": "^5.2.0",
"nightwatch": "^1.1.12",
"puppeteer": "^1.20.0",
"selenium-server": "^3.141.59",
"selenium-webdriver": "^4.0.0-alpha.1",
"mocha-jenkins-reporter": "^0.4.2"
}
}