-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "sake",
"description": "[S]cripted-r[ake] -- a JavaScript build tool similar to rake, or make.",
"version": "0.1.31",
"keywords": [
"build",
"make",
"rake",
"jake"
],
"main": "./node_modules/sake/sake.js",
"bin": {
"sake": "./bin/sake"
},
"dependencies": {
"nomnom": "=1.5.x",
"async": "=0.2.x",
"resolve": "=0.2.x",
"proteus": "=0.1.x",
"wordwrap": "=0.0.x",
"glob": "=3.1.x",
"minimatch": "=0.2.x"
},
"devDependencies": {
"mocha": "=0.3.x",
"should": "=0.5.x",
"ejs": "=0.7.x"
},
"bundleDependencies": [
"sake"
],
"scripts": {
"test": "mocha test/test-*"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jhamlet/node-sake/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/jhamlet/node-sake.git"
},
"bugs": {
"url": "http://github.com/jhamlet/node-sake/issues"
},
"preferGlobal": true
}