-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 942 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
35
36
37
38
39
40
41
42
{
"name": "@amida-tech/jsonave",
"version": "1.0.4",
"description": "A JSONPath implementation",
"main": "./index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "grunt test",
"coverage": "grunt coverage",
"verify": "grunt"
},
"author": "Afsin Ustundag <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">= 14.19.3"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-jsbeautifier": "^0.2.13",
"grunt-run": "^0.8.1",
"jest": "^29.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/amida-tech/jsonave.git"
},
"keywords": [
"JSONPath",
"json-path"
],
"bugs": {
"url": "https://github.com/amida-tech/jsonave/issues"
},
"homepage": "https://github.com/amida-tech/jsonave"
}