forked from amida-tech/jsonave
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.05 KB
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
{
"name": "jsonave",
"version": "0.0.3",
"description": "A JSONPath implementation",
"main": "./index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "grunt mocha",
"verify": "grunt"
},
"author": "Afsin Ustundag <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"lodash": "^3.9.3"
},
"devDependencies": {
"chai": "^3.0.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-jsbeautifier": "^0.2.10",
"grunt-mocha-test": "^0.12.7",
"grunt-shell": "^1.1.2",
"mocha": "^2.2.5"
},
"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"
}