forked from hyperjump-io/json-pointer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@hyperjump/json-pointer",
"version": "0.9.2",
"description": "An RFC-6901 JSON Pointer implementation",
"main": "lib/index.js",
"exports": {
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"scripts": {
"clean": "xargs -a .gitignore rm -rf",
"lint": "eslint lib",
"test": "mocha --require ts-node/register 'lib/**/*.spec.ts'",
"build": "rollup --config rollup.config.js",
"prepublishOnly": "npm run build",
"postinstall": "rm -rf dist"
},
"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": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"mocha": "^9.1.1",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"just-curry-it": "^3.2.1"
}
}