forked from bfricka/less-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 KB
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
{
"name": "less2css",
"description": "Converts LESS to CSS and does other awesome stuff",
"version": "0.0.2",
"private": true,
"author": "Brian Frichette",
"homepage": "http://less2css.org/",
"contributors": [
"Brian Frichette <brian.frichette@gmail.com> (https://github.com/brian-frichette)",
"Scott Rippey (https://github.com/scottrippey)"
],
"bugs": { "url": "https://github.com/brian-frichette/less-preview/issues" },
"scripts": {
"start": "nodemon app.js",
"prod": "forever start app.js -l"
},
"dependencies": {
"forever": "*",
"express": ">=3.0",
"jade": "*",
"less-middleware": "*",
"lodash": ">=0.9",
"mongoose": "*"
},
"devDependencies": {
"grunt": ">=0.4.x",
"testacular": "0.5.x",
"grunt-contrib-uglify": "git://github.com/gruntjs/grunt-contrib-uglify.git",
"grunt-contrib-concat": "git://github.com/gruntjs/grunt-contrib-concat.git",
"grunt-contrib-watch": "git://github.com/gruntjs/grunt-contrib-watch.git",
"grunt-contrib-jshint": "git://github.com/gruntjs/grunt-contrib-jshint.git",
"grunt-contrib-coffee": "git://github.com/gruntjs/grunt-contrib-coffee.git",
"async": "0.1.x",
"nodemon": "*"
},
"keywords": ["less", "lesscss"],
"repository": "git://github.com/brian-frichette/less-preview.git",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
]
}