-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.91 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
{
"name": "@suffolklitlab/alkiln",
"version": "5.13.1-fix-download-name",
"description": "Integrated automated end-to-end testing with docassemble, puppeteer, and cucumber.",
"main": "lib/index.js",
"scripts": {
"test": "npm run unit && npm run codes && npm run cucumber",
"cucumber": "./lib/run_cucumber.js",
"local": "npm run setup && npm run cucumber; npm run takedown",
"pass": "npm run cucumber 'not @error and not @temp_error'",
"fail": "npm run cucumber '@error'",
"setup": "./lib/docassemble/setup.js",
"takedown": "./lib/docassemble/takedown.js",
"server_install": "./lib/docassemble/server_install.js",
"unit": "mocha tests/unit_tests/*.test.*",
"codes": "tests/log_codes/check_codes.sh ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuffolkLITLab/ALKiln.git"
},
"keywords": [
"docassemble",
"cucumber",
"puppeteer",
"automated testing",
"integrated testing",
"chai"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/SuffolkLITLab/ALKiln/issues"
},
"homepage": "https://suffolklitlab.org/docassemble-AssemblyLine-documentation/docs/alkiln/intro",
"dependencies": {
"@axe-core/puppeteer": "4.7.3",
"@cucumber/cucumber": "9.3.0",
"@faker-js/faker": "7.3.0",
"axios": "1.7.3",
"chai": "4.2.0",
"cheerio": "1.0.0-rc.10",
"deep-equal-in-any-order": "2.0.0",
"diff": "5.0.0",
"dotenv": "8.2.0",
"fast-glob": "3.2.12",
"minimatch": "3.0.5",
"minimist": "1.2.8",
"mocha": "9.2.2",
"pdfjs-dist": "3.11.174",
"puppeteer": "22.15.0",
"qs": "6.10.3",
"sanitize-filename": "1.6.3",
"uuid": "8.3.2"
},
"bin": {
"alkiln-server-install": "./lib/docassemble/server_install.js",
"alkiln-setup": "./lib/docassemble/setup.js",
"alkiln-takedown": "./lib/docassemble/takedown.js",
"alkiln-run": "./lib/run_cucumber.js"
}
}