forked from JSONPath-Plus/JSONPath
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.33 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
{
"author": "Stefan Goessner",
"name": "jsonpath-plus",
"description": "A JS implementation of JSONPath with some additional operators",
"contributors": [
{
"name": "Prof. Gössner",
"email": "[email protected]"
},
{
"name": "Subbu Allamaraju",
"email": "[email protected]"
},
{
"name": "Mike Brevoort",
"email": "[email protected]"
},
{
"name": "Robert Krahn",
"email": "[email protected]"
},
{
"name": "Brett Zamir",
"email": "[email protected]"
},
{
"name": "Richard Schneider",
"email": "[email protected]"
}
],
"license": "MIT",
"version": "0.14.0",
"repository": {
"type": "git",
"url": "https://github.com/mplabs/JSONPath.git"
},
"bugs": "https://github.com/s3u/JSONPath/issues/",
"homepage": "https://github.com/s3u/JSONPath",
"main": "./lib/jsonpath",
"dependencies": {},
"engines": {
"node": ">=0.8"
},
"devDependencies": {
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"gulp": "^3.9.1",
"gulp-minify": "0.0.5",
"nodeunit": "0.9.0"
},
"keywords": [
"json",
"jsonpath"
],
"scripts": {
"test": "./node_modules/.bin/eslint test lib && \"./node_modules/.bin/nodeunit\" test"
}
}