-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
47 lines (47 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
{
"name": "less2css",
"description": "Converts LESS to CSS and does other awesome stuff",
"version": "0.0.9",
"private": true,
"author": "Brian Frichette",
"homepage": "http://less2css.org/",
"contributors": [
"Brian Frichette <[email protected]> (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": "~0.10.11",
"express": "~3.4.8",
"jade": "~1.3.0",
"lodash": "~2.4",
"q": "^1.0.1"
},
"devDependencies": {
"grunt": "~0.4.3",
"grunt-config-merge": "^1.1.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-jshint": "~0.9.2",
"grunt-contrib-less": "^0.11.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.6.1",
"nodemon": "~1.2.0"
},
"keywords": [
"less",
"lesscss"
],
"repository": "git://github.com/brian-frichette/less-preview.git",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
]
}