-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 808 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 808 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
{
"name": "@hyperjump/json-pointer",
"version": "1.1.2",
"description": "An RFC-6901 JSON Pointer implementation",
"type": "module",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"lint": "eslint lib",
"test": "vitest --watch=false",
"type-check": "tsc --noEmit"
},
"repository": "github:hyperjump-io/json-pointer",
"keywords": [
"JSON Pointer",
"RFC-6901"
],
"author": "Jason Desrosiers <jdesrosi@gmail.com>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"devDependencies": {
"@stylistic/eslint-plugin": "*",
"@types/node": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"typescript-eslint": "*",
"vitest": "*"
}
}