forked from swinton/screenshot-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "screenshot-url",
"version": "1.0.1",
"description": "",
"author": "Steve Winton <stevewinton@gmail.com> (https://github.com/swinton)",
"main": "index.js",
"license": "ISC",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/swinton/screenshot-url.git"
},
"scripts": {
"start": "node ./index.js",
"dev": "nodemon",
"test": "jest && eslint index.js 'lib/**.js' 'test/**.js'",
"lint": "eslint index.js 'lib/**.js' 'test/**.js' --fix",
"package": "ncc build index.js -o dist",
"pre-commit": "npm run package && git add dist/"
},
"dependencies": {
"@actions/artifact": "^0.1.0",
"@actions/core": "^1.2.3",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"capture-website": "^0.8.1",
"dotenv": "^8.2.0",
"js-yaml": "^3.13.1",
"puppeteer": "^2.1.1"
},
"devDependencies": {
"@zeit/ncc": "^0.21.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"husky": "^4.2.3",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
},
"engines": {
"node": ">= 8.3.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"index.js",
"lib/*.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}