forked from smebberson/fuse
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 927 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 927 Bytes
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
{
"name": "fuse",
"description": "Command line combiner for fusing mutliple JavaScript or HTML files into one.",
"url": "http://github.com/smebberson/fuse",
"keywords": [
"combiner",
"javascript",
"cli",
"parser",
"command",
"packager"
],
"author": {
"name": "Scott Mebberson",
"email": "scott@scottmebberson.com"
},
"repository": {
"type": "git",
"url": "https://github.com/smebberson/fuse.git"
},
"dependencies": {
"underscore": ">=1.4.x",
"optimist": ">=0.3.5",
"colors": ">=0.6.x",
"uglify-js": ">=2.2.x",
"jshint": "0.9.x",
"debug": "~0.7.4",
"async": "~0.2.9"
},
"devDependencies": {
"mocha": "1.8.x"
},
"main": "./lib",
"bin": {
"fuse": "./bin/fuse.js"
},
"scripts": {
"test": "make test"
},
"directories": {
"bin": "./bin"
},
"version": "0.4.1-debug",
"engines": {
"node": ">=0.8"
}
}