-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 789 Bytes
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
{
"name": "uv",
"version": "1.4.0",
"description": "Ultrafast UTF-8 data validation",
"keywords": [
"utf8",
"validation"
],
"homepage": "https://github.com/micnic/uv",
"bugs": {
"url": "https://github.com/micnic/uv/issues"
},
"license": "MIT",
"author": {
"name": "Nicu Micleușanu",
"email": "micnic90@gmail.com",
"url": "https://github.com/micnic"
},
"main": "index",
"repository": "github:micnic/uv",
"files": [
"index.d.ts",
"index.js"
],
"types": "index.d.ts",
"scripts": {
"test": "tap -b test.js",
"test-cov-html": "npm test -- --coverage-report=html"
},
"devDependencies": {
"benchmark": "2.x",
"eslint": "8.x",
"isutf8": "4.x",
"tap": "16.x",
"typescript": "4.x",
"utf-8-validate": "5.x"
},
"engines": {
"node": ">=6.0"
}
}