-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "css-image-checker",
"version": "1.11.0",
"description": "Checks if all images in CSS files exists",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/gemal/node-css-image-checker.git"
},
"scripts": {
"test": "mocha"
},
"type": "module",
"author": "Henrik Gemal <[email protected]> (http://gemal.dk/)",
"license": "MIT",
"bin": {
"css-image-checker": "index.js"
},
"bugs": {
"url": "https://github.com/gemal/node-css-image-checker/issues"
},
"keywords": [
"css",
"check",
"cli",
"images",
"validate",
"automate",
"ci"
],
"homepage": "https://github.com/gemal/node-css-image-checker",
"dependencies": {
"commander": "^12.1.0",
"css-url-parser": "^1.1.3",
"is-url-superb": "^6.1.0",
"recursive-readdir-sync": "^1.0.6"
},
"devDependencies": {
"chai": "^5.1.2",
"check-package-lock": "^1.5.0",
"child_process": "^1.0.2",
"codecov": "^3.8.2",
"eslint": "^9.13.0",
"eslint-config-google": "^0.14.0",
"expect": "^29.2.2",
"lintspaces-cli": "^1.0.0",
"mocha": "^10.0.0",
"nyc": "^17.1.0",
"snyk": "^1.792.0"
}
}