-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.1 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
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
80
81
{
"name": "jsonpath-tmf-query",
"version": "1.2.1",
"description": "This library aims to provide a simple wrapper around jsonpath, to ease the implementation of TMF630 JSONPath specification as outlined by the TM Forum [here](https://projects.tmforum.org/wiki/pages/viewpage.action?spaceKey=PUB&title=TMF630+REST+API+Design+Guidelines+v4.0.1)",
"type": "module",
"main": "./dist/JSONPathQuery.cjs",
"module": "./dist/JSONPathQuery.mjs",
"types": "./dist/JSONPathQuery.d.ts",
"exports": {
".": {
"require": "./dist/JSONPathQuery.cjs",
"import": "./dist/JSONPathQuery.mjs",
"types": "./dist/JSONPathQuery.d.ts"
}
},
"scripts": {
"prepack": "unbuild",
"build": "tsc",
"test": "vitest run",
"lint": "eslint src"
},
"files": [
"dist/*"
],
"author": "Nathan Babinall",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.1.1",
"@semantic-release/git": "^10.0.1",
"@types/lodash": "^4.14.202",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"semantic-release": "^23.0.0",
"source-map-support": "^0.5.20",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"unbuild": "^2.0.0",
"vitest": "^1.5.0"
},
"dependencies": {
"jsonpath-plus": "^10.0.4",
"lodash": "^4.17.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NathanBabinall/jsonpath-tmf-query.git"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"keywords": [
"json",
"jsonpath",
"tmf",
"tm forum"
],
"bugs": {
"url": "https://github.com/NathanBabinall/jsonpath-tmf-query/issues"
},
"homepage": "https://github.com/NathanBabinall/jsonpath-tmf-query#readme"
}