-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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": "phenix-acceptance-testing",
"version": "2023.0.0",
"description": "Phenix Acceptance Testing CLI",
"main": "./src/app.js",
"scripts": {
"ci-test": "npm run test all all",
"ci-bundle": "npm run bundle",
"ci-coverage": "npm run coverage",
"ci-publish": "npm publish",
"postci-test": "npm run lint",
"preinstall": "npm prune",
"test": "node scripts/run test",
"unit-test": "mocha ./test/unit_tests/*.js",
"bundle": "node scripts/run build",
"prebundle": "npm install",
"prepack": "npm run bundle",
"coverage": "jest --config=test/jest.config.js --coverage --verbose",
"clean": "node scripts/run clean",
"lint": "eslint --cache --ext .jsx,.js ./",
"lint-fix": "eslint --ext .jsx,.js --fix ./"
},
"author": "Phenix Real Time Solutions, Inc.",
"keywords": [
"phenix",
"acceptance",
"testing"
],
"license": "Apache-2.0",
"dependencies": {
"archiver": "5.0.0",
"chalk": "3.0.0",
"express": "4.17.1",
"jsqr": "1.2.0",
"mathjs": "7.1.0",
"moment": "2.24.0",
"node-fetch": "2.6.1",
"phenix-edge-auth": "1.2.7",
"ps-node": "0.1.6",
"qrcode": "1.4.4",
"testcafe": "1.9.3",
"testcafe-browser-provider-browserstack": "1.13.0",
"yargs": "16.0.3",
"csvtojson": "2.0.10"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "5.12.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-lodash": "6.0.0",
"eslint-plugin-notice": "0.7.7",
"eslint-plugin-requirejs": "4.0.0",
"mocha": "7.1.2",
"sinon": "9.0.2",
"xml-writer": "1.7.0"
}
}