-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 891 Bytes
/
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
{
"name": "@hyperjump/json-pointer",
"version": "1.1.0",
"description": "An RFC-6901 JSON Pointer implementation",
"type": "module",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"clean": "xargs -a .gitignore rm -rf",
"lint": "eslint lib",
"test": "vitest --watch=false"
},
"repository": "github:hyperjump-io/json-pointer",
"keywords": [
"JSON Pointer",
"RFC-6901"
],
"author": "Jason Desrosiers <[email protected]>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"eslint-import-resolver-node": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"typescript": "*",
"vitest": "*"
}
}