-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.77 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.77 KB
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
{
"name": "browserstack-screenshots",
"version": "1.0.0",
"description": "Integrate the Browserstack screenshots api into you ci/cd pipelines.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "eslint **.js",
"generate-screenshots": "NODE_ENV=development ACTION=generate-screenshots node index.js",
"download-screenshots": "NODE_ENV=development ACTION=download-screenshots node index.js",
"collect-gatsby": "NODE_ENV=development ACTION=collect-static-gatsby node index.js",
"collect-sitemap": "NODE_ENV=development ACTION=collect-sitemap-urls node index.js",
"generate-html": "NODE_ENV=development ACTION=generate-html node index.js",
"slack-post": "NODE_ENV=development ACTION=slack-post node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frank7huysen/browserstack-screenshots.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/frank7huysen/browserstack-screenshots/issues"
},
"homepage": "https://github.com/frank7huysen/browserstack-screenshots#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"browserstack": "^1.6.0",
"dotenv": "^8.2.0",
"fetch": "^1.1.0",
"fs": "^0.0.1-security",
"html-creator": "^0.4.4",
"path": "^0.12.7",
"pdfkit": "^0.11.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"lint-staged": "^10.2.11",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1"
}
}