forked from abi/node_util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 798 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
37
38
39
{
"name": "node_util",
"version": "0.0.1",
"description": "Utilities that help you write Node programs and in particular, CLI scripts easily.",
"keywords": [
"file system",
"fs",
"utilities",
"cli"
],
"author": "Abi <[email protected]> (http://abi.sh)",
"licenses": [
{
"type": "MIT"
}
],
"scripts": {
"prepublish": "coffee -o lib/ -c ./src/node_util.coffee",
"test": "coffee examples/example.coffee"
},
"dependencies": {
"request": "2.x"
},
"main": "./lib/node_util.js",
"engines": {
"node": ">=0.4.x"
},
"directories": {
"example": "./examples",
"lib": "./src"
},
"devDependencies": {
"coffee-script": ""
},
"repository": {
"type": "git",
"url": "git://github.com/abi/node_util.git"
}
}