-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "jspath",
"version": "0.4.0",
"homepage": "https://github.com/dfilatov/jspath",
"description": "DSL that enables you to navigate and find data within your JSON documents",
"keywords": [
"json",
"path",
"filter",
"selection",
"jspath",
"jpath",
"jsonpath"
],
"author": "Dmitry Filatov <dfilatov@yandex-team.ru>",
"contributors": [
{
"name": "Dmitry Filatov",
"email": "dfilatov@yandex-team.ru"
},
{
"name": "Marat Dulin",
"email": "mdevils@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/dfilatov/jspath.git"
},
"dependencies": {},
"devDependencies": {
"nodeunit": "0.11.2",
"istanbul": "0.4.5",
"cliff": "0.1.10",
"benchmark": "2.1.4",
"uglify-js": "3.3.4"
},
"main": "index",
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js test test.js"
},
"enb": {
"sources": [
"lib/jspath.js"
]
}
}