forked from ryanmcgrath/wrench-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (32 loc) · 854 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
40
41
42
{
"name": "wrench",
"description": "Recursive filesystem (and other) operations that Node *should* have.",
"version": "1.3.5",
"author": "Ryan McGrath <ryan@venodesigns.net>",
"repository": {
"type" : "git",
"url": "https://ryanmcgrath@github.com/ryanmcgrath/wrench-js.git"
},
"bugs": {
"url": "http://github.com/ryanmcgrath/wrench-js/issues"
},
"os": [ "linux", "darwin", "freebsd" ],
"directories": {
"lib": "./lib/"
},
"dependencies": {
},
"devDependencies": {
"nodeunit": ">= 0.6.4",
"underscore": ">= 1.3.1"
},
"main": "./lib/wrench",
"engines": {
"node": ">=0.1.97"
},
"scripts": { "test": "./node_modules/nodeunit/bin/nodeunit tests/runner.js" },
"licenses": [{
"type" : "MIT",
"url" : "http://github.com/ryanmcgrath/wrench-js/raw/master/LICENSE"
}]
}