-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name" : "pipes2js",
"version": "0.0.1",
"description": "Compile Yahoo! Pipes to Javascript",
"author": "Eric Abouaf <eric.abouaf@gmail.com>",
"preferGlobal": "true",
"main" : "index.js",
"directories" : { "lib" : "./lib" },
"repository": {
"type":"git",
"url":"http://github.com/neyric/pipes2js.git"
},
"bin": {
"pipes2js": "./cli/pipes2js.js"
},
"dependencies": {
"async": "0.1.22",
"xml2js-expat": "0.2.2",
"request": "2.11.4",
"htmlparser": "1.7.6",
"strftime": "0.4.7",
"jsdom": "0.2.19"
},
"devDependencies": {
"vows": "0.6.4"
},
"scripts": {
"test": "vows --spec modules/*/test.js tests/*"
},
"licenses" : [
{
"type" : "MIT",
"url" : "https://raw.github.com/neyric/pipes2js/master/LICENSE.txt"
}
]
}