source: frontend/node_modules/jsonpath/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[9af201e]1{
2 "name": "jsonpath",
3 "description": "Query JavaScript objects with JSONPath expressions. Robust / safe JSONPath engine for Node.js.",
4 "version": "1.3.0",
5 "author": "david@fmail.co.uk",
6 "scripts": {
7 "prepublishOnly": "node lib/aesprim.js > generated/aesprim-browser.js",
8 "test": "mocha -u tdd test && jshint lib",
9 "generate": "node bin/generate_parser.js > generated/parser.js"
10 },
11 "dependencies": {
12 "esprima": "1.2.5",
13 "static-eval": "2.1.1",
14 "underscore": "1.13.6"
15 },
16 "browser": "./jsonpath.js",
17 "alias": {
18 "./lib/aesprim.js": "./generated/aesprim-browser.js"
19 },
20 "devDependencies": {
21 "grunt": "0.4.5",
22 "grunt-browserify": "3.8.0",
23 "grunt-cli": "0.1.13",
24 "grunt-contrib-uglify": "0.9.1",
25 "jison": "0.4.13",
26 "jscs": "1.10.0",
27 "jshint": "2.6.0",
28 "mocha": "2.1.0"
29 },
30 "repository": {
31 "type": "git",
32 "url": "https://github.com/dchester/jsonpath"
33 },
34 "keywords": [
35 "JSONPath",
36 "jsonpath",
37 "json-path",
38 "object",
39 "traversal",
40 "json",
41 "path",
42 "data structures"
43 ],
44 "license": "MIT"
45}
Note: See TracBrowser for help on using the repository browser.