forked from dchester/jsonpath
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "@astronautlabs/jsonpath",
"private": false,
"description": "Query JavaScript objects with JSONPath expressions. Robust / safe JSONPath engine for Node.js.",
"version": "1.0.8",
"author": {
"name": "Astronaut Labs, LLC.",
"url": "https://astronautlabs.com/"
},
"main": "./dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p .",
"prepublishOnly": "npm run build && npm run docs",
"docs": "typedoc src",
"generate": "ts-node generate-parser.ts",
"test": "npm run build && node dist/test.js"
},
"dependencies": {
"@types/esprima": "^4.0.2",
"@types/mkdirp": "^1.0.0",
"esprima": "1.2.2",
"static-eval": "2.0.2",
"underscore": "1.7.0"
},
"devDependencies": {
"@types/assert": "^1.4.7",
"@types/chai": "^4.2.11",
"@types/node": "14.0.1",
"@types/static-eval": "^0.2.30",
"@types/underscore": "^1.10.0",
"chai": "^4.2.0",
"grunt": "0.4.5",
"grunt-browserify": "3.8.0",
"grunt-cli": "0.1.13",
"grunt-contrib-uglify": "0.9.1",
"jison": "^0.4.18",
"jscs": "1.10.0",
"jshint": "2.6.0",
"mkdirp": "^1.0.4",
"mocha": "2.1.0",
"razmin": "^0.6.13",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typedoc": "^0.17.7",
"typescript": "^3.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/astronautlabs/jsonpath"
},
"keywords": [
"JSONPath",
"jsonpath",
"json-path",
"object",
"traversal",
"json",
"path",
"data structures"
],
"license": "MIT"
}