forked from dfilatov/jspath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name" : "jspath",
"version" : "0.3.1",
"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" }
],
"repository" : {
"type" : "git",
"url" : "http://github.com/dfilatov/jspath.git"
},
"dependencies" : {},
"devDependencies" : {
"nodeunit" : "0.9.1",
"istanbul" : "",
"cliff" : "",
"benchmark" : "",
"uglify-js" : "1.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"
]
}
}