forked from jmlewis/collate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 992 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
43
44
45
46
47
48
49
50
51
52
{
"name": "collate",
"version": "0.0.7",
"author": "Sharing State <[email protected]>",
"description": "a .js/.coffee and .css/.less collater",
"contributors": [
{
"name": "Joshua M. Lewis",
"email": "[email protected]"
},
{
"name": "Galen Wolfe-Pauly",
"email": "[email protected]"
}
],
"bin": {
"collate": "./bin/collate"
},
"scripts": {
"start": "node ./bin/collate"
},
"main": "./lib/collate",
"repository": {
"type": "git",
"url": "https://github.com/jmlewis/collate.git"
},
"keywords": [
"javascript",
"coffeescript",
"css",
"less",
"minify",
"uglify",
"asset management"
],
"dependencies": {
"async": "0.1.x",
"uglify-js": "1.2.x",
"less": "1.6.x",
"coffee-script": "1.2.x",
"optimist": "0.3.x"
},
"noAnalyze": true,
"devDependencies": {
},
"bundleDependencies": [
],
"license": "MIT",
"engines": {
"node": ">=0.6"
}
}