-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 908 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
{
"name": "less-express",
"version": "1.0.1",
"description": "express middleware for artifact free LESS compiling",
"main": "index.js",
"engines": {
"node": ">=0.12"
},
"scripts": {
"pretest": "eslint .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edelight/less-express.git"
},
"keywords": [
"express",
"middleware",
"less"
],
"author": "Frederik Ring <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/edelight/less-express/issues"
},
"homepage": "https://github.com/edelight/less-express#readme",
"dependencies": {
"less": "^2.7.1",
"lru-cache": "^4.0.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"eslint": "^2.11.0",
"express": "^4.13.4",
"less-plugin-clean-css": "^1.5.1",
"mocha": "^2.5.3",
"supertest": "^1.2.0"
}
}