forked from dchester/jsonpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
{
"name": "jsonpath-extension",
"description": "Query JavaScript objects with JSONPath expressions. Robust / safe JSONPath engine for Node.js. / Extensions",
"version": "1.0.2",
"author": "[email protected]",
"scripts": {
"postinstall": "node lib/aesprim.js > generated/aesprim-browser.js",
"test": "mocha -u tdd test && jscs lib && jshint lib",
"generate": "node bin/generate_parser.js > generated/parser.js"
},
"dependencies": {
"esprima": "1.2.2",
"jison": "0.4.13",
"static-eval": "2.0.0",
"underscore": "1.7.0"
},
"browser": {
"./lib/aesprim.js": "./generated/aesprim-browser.js"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-browserify": "3.8.0",
"grunt-cli": "0.1.13",
"grunt-contrib-uglify": "0.9.1",
"jscs": "1.10.0",
"jshint": "2.6.0",
"mocha": "2.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/powerumc/jsonpath-extension"
},
"keywords": [
"JSONPath",
"jsonpath",
"json-path",
"object",
"traversal",
"json",
"path",
"data structures"
],
"license": "MIT"
}