-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.18 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "jsonpathly",
"version": "3.0.0",
"description": "RFC 9535 compliant JSONPath query library for TypeScript/JavaScript - secure, fast, and dependency-free",
"engines": {
"node": ">=18"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"browser": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"gen": "peggy --format es -o src/parser/generated/parser.js src/parser/jsonpath.peggy",
"test": "mocha --require ts-node/register --timeout 60000 --exit --no-cache tests/*.ts",
"build": "tsup",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build && npm test && npm run lint",
"preversion": "npm test && npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release:patch": "npm version patch -m 'chore: release v%s'",
"release:minor": "npm version minor -m 'chore: release v%s'",
"release:major": "npm version major -m 'chore: release v%s'"
},
"repository": {
"type": "git",
"url": "https://github.com/atamano/jsonpathly.git"
},
"keywords": [
"jsonpath",
"json-path",
"json",
"path",
"query",
"typescript",
"rfc9535",
"selector",
"filter",
"expression",
"parser",
"xpath"
],
"author": "Antoine Tamano",
"license": "MIT",
"bugs": {
"url": "https://github.com/atamano/jsonpathly/issues"
},
"homepage": "https://github.com/atamano/jsonpathly#readme",
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"c8": "^10.1.3",
"chai": "^4.3.8",
"eslint": "^9.39.2",
"lint-staged": "^10.0.8",
"mocha": "^10.2.0",
"peggy": "^5.0.6",
"prettier": "^2.6.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"browser": "./dist/index.mjs",
"default": "./dist/index.mjs"
}
}
}