forked from folio-org/ui-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.47 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
{
"name": "@folio/ui-testing",
"version": "4.0.0",
"description": "Regression tests for FOLIO UI",
"repository": "folio-org/ui-testing",
"publishConfig": {
"registry": "https://repository.folio.org/repository/npm-folio/"
},
"author": "Wolfram Schneider <wosch@indexdata.com>",
"license": "Apache-2.0",
"scripts": {
"test": "./node_modules/.bin/mocha test/120-auth-fail.js test/dependencies.js test/loan_renewal.js test/exercise.js test/codex-search.js test-module.js --run=/checkin/checkout/users/inventory/requests/circulation/organization",
"test-simple": "./node_modules/.bin/mocha test/100-startpage.js",
"test-good-login": "./node_modules/.bin/mocha test/110-auth-success.js",
"test-bad-login": "./node_modules/.bin/mocha test/120-auth-fail.js",
"test-exercise": "./node_modules/.bin/mocha test/exercise.js",
"test-loan-renewals": "./node_modules/.bin/mocha test/loan_renewal.js",
"test-dependencies": "./node_modules/.bin/mocha test/dependencies.js",
"test-inventory": "./node_modules/.bin/mocha test-module.js --run=/inventory",
"test-requests": "./node_modules/.bin/mocha test-module.js --run=/requests",
"test-users": "./node_modules/.bin/mocha test-module.js --run=/users",
"test-organization": "./node_modules/.bin/mocha test-module.js --run=/organization",
"test-module": "./node_modules/.bin/mocha test-module.js",
"test-codexsearch": "./node_modules/.bin/mocha test/codex-search.js",
"test-profile-pictures": "./node_modules/.bin/mocha test/profile-pictures.js",
"test-vendors": "./node_modules/.bin/mocha test/vendor.js",
"module-tests": "./node_modules/.bin/mocha test-module.js --run=/checkout/checkin/users/inventory/organization",
"lint": "eslint *.js test/*.js"
},
"dependencies": {
"@folio/checkin": "*",
"@folio/checkout": "*",
"@folio/circulation": "*",
"@folio/inventory": "*",
"@folio/requests": "*",
"@folio/search": "*",
"@folio/users": "*",
"@folio/organization": "*",
"debug": "^3.1.0",
"minimist": "^1.2.0",
"mocha": "^3.4.2",
"mocha-jenkins-reporter": "^0.3.12",
"moment": "^2.22.1",
"nightmare": "^2.10.0",
"nightmarejs": "^0.0.1"
},
"devDependencies": {
"@folio/eslint-config-stripes": "^1.1.0",
"babel-core": "^6.17.0",
"babel-eslint": "^8.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.16.0",
"babel-register": "^6.18.0",
"eslint": "^4.8.0"
}
}