-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@hckrnews/local-fetch",
"version": "1.2.8",
"description": "Local Fetch",
"files": [
"src/index.js",
"src/is-url.js",
"src/get-path.js"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/hckrnews/local-fetch.git"
},
"license": "MIT",
"keywords": [
"javascript",
"fetch",
"local",
"file",
"json"
],
"author": {
"name": "Pieter Wigboldus",
"url": "https://hckr.news/"
},
"bugs": {
"url": "https://github.com/hckrnews/local-fetch/issues"
},
"homepage": "https://github.com/hckrnews/local-fetch#readme",
"scripts": {
"lint": "standard src",
"lint:report": "standard src | standard-reporter --json > report.json",
"lint:fix": "standard src --fix",
"test": "jest",
"test:watch": "jest src --watch",
"cpd": "node_modules/jscpd/bin/jscpd src",
"vulnerabilities": "npm audit --omit=dev"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.23.9",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/preset-env": "^7.12.11",
"@jest/globals": "^29.0.0",
"babel-jest": "^29.0.0",
"eslint": "^9.0.0",
"esm": "^3.2.25",
"jest": "^29.0.0",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"jscpd": "^4.0.0",
"prettier": "^3.0.0",
"standard": "^17.0.0",
"standard-reporter": "^1.0.5"
},
"type": "module",
"engines": {
"node": ">= 18"
},
"standard": {
"parser": "@babel/eslint-parser",
"globals": [
"describe",
"it",
"expect",
"btoa"
],
"ignore": [
"**/__fixtures__/"
]
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/w3nl"
}
}