-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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": "analyze-image",
"version": "1.0.0",
"description": "Analyzes an image and detects potential improvements for a webpage",
"main": "./lib/index.js",
"scripts": {
"test": "jest test/ --coverage --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmetais/analyze-image.git"
},
"keywords": [
"image",
"webperf",
"performance",
"analyze",
"phantomas",
"test"
],
"author": "Gaël Métais",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/gmetais/analyze-image/issues"
},
"homepage": "https://github.com/gmetais/analyze-image#readme",
"dependencies": {
"css-calc-transform": "1.0.0",
"debug": "4.3.4",
"file-type": "16.5.3",
"htmlparser2": "9.0.0",
"imagemin": "7.0.1",
"imagemin-gifsicle": "7.0.0",
"imagemin-svgo": "9.0.0",
"is-svg": "3.0.0",
"media-query-fns": "1.4.0",
"sharp": "0.32.4",
"srcset": "4.0.0"
},
"devDependencies": {
"jest": "29.6.2"
},
"jest": {
"verbose": true,
"coveragePathIgnorePatterns": [
"test/"
],
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
}
}