-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "@perseveranza-pets/milo",
"version": "0.8.0",
"description": "A fast and embeddable HTTP/1.1 parser.",
"homepage": "https://sw.cowtech.it/milo",
"repository": {
"type": "git",
"url": "git+https://github.com/ShogunPanda/milo.git"
},
"keywords": [
"http",
"parser"
],
"bugs": {
"url": "https://github.com/ShogunPanda/milo/issues"
},
"author": "Shogun <shogun@cowtech.it>",
"license": "ISC",
"private": true,
"type": "module",
"scripts": {
"format": "prettier -w \"parser/**/*.js\" \"benchmarks/**/*.js\" \"references/**/*.js\" \"scripts/**/*.js\"",
"lint": "eslint --cache \"parser/**/*.js\" \"benchmarks/**/*.js\" \"references/**/*.js\" \"scripts/**/*.js\""
},
"dependencies": {
"@cowtech/eslint-config": "^11.1.3",
"eslint": "^9.39.0",
"prettier": "^3.8.3",
"prettier-plugin-space-before-function-paren": "^0.1.0",
"remark-parse": "^11.0.0",
"semver": "^7.8.1",
"unified": "^11.0.5",
"yaml": "^2.9.0"
},
"engines": {
"node": ">= 22.21.0"
}
}