-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "@hyperjump/uri",
"version": "1.2.2",
"description": "A small and fast library for validating parsing and resolving URIs and IRIs",
"type": "module",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"clean": "xargs -a .gitignore rm -rf",
"lint": "eslint lib",
"test": "mocha 'lib/**/*.spec.ts'"
},
"repository": "github:hyperjump-io/uri",
"author": "Jason Desrosiers <[email protected]>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"keywords": [
"URI",
"IRI",
"resolve",
"relative",
"parse",
"RFC3986",
"RFC-3986",
"RFC3987",
"RFC-3987"
],
"devDependencies": {
"@types/chai": "*",
"@types/mocha": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"chai": "*",
"eslint": "*",
"eslint-import-resolver-node": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"mocha": "*",
"ts-node": "*",
"typescript": "*"
}
}