-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
48
49
50
51
52
{
"name": "express-compile-sass",
"author": "Peter Müller <[email protected]>",
"license": "MIT",
"version": "4.0.0",
"description": "Express middleware that compiles sass to css using the locally installed node-sass",
"repository": {
"type": "git",
"url": "https://github.com/Munter/express-compile-sass.git"
},
"keywords": [
"express",
"sass",
"css"
],
"homepage": "https://github.com/Munter/express-compile-sass",
"bugs": "https://github.com/Munter/express-compile-sass/issues",
"main": "lib/index.js",
"files": [
"lib/index.js"
],
"scripts": {
"lint": "jshint .",
"test": "npm run lint && mocha",
"travis": "npm run lint && npm run coverage",
"coverage": "istanbul cover _mocha"
},
"devDependencies": {
"coveralls": "^3.0.0",
"express": "^4.13.1",
"extend": "^3.0.0",
"fs-extra": "^5.0.0",
"istanbul": "^0.4.3",
"jshint": "^2.5.6",
"magicpen-media": "^1.5.0",
"mensch": "^0.3.1",
"messy": "^6.5.0",
"mocha": "^5.0.0",
"mocha-lcov-reporter": "^1.2.0",
"node-sass": "^4.7.2",
"sinon": "^4.3.0",
"unexpected": "^10.37.1",
"unexpected-express": "^10.0.0",
"unexpected-sinon": "^10.2.1"
},
"dependencies": {
"chalk": "^2.3.1",
"chokidar": "^2.0.1",
"csserror": "^2.0.2",
"inline-source-map-comment": "^1.0.5"
}
}