forked from Munter/express-compile-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
53
54
55
56
57
58
59
{
"name": "koa-compile-sass",
"version": "1.0.4",
"description": "Koa middleware to compile sass in the HTTP stream",
"files": [
"lib/index.js"
],
"main": "lib/index.js",
"scripts": {
"lint": "jshint .",
"test": "npm run lint && mocha",
"travis": "npm run lint && npm run coverage",
"coverage": "istanbul cover _mocha"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swist/koa-compile-sass.git"
},
"keywords": [
"koa",
"sass",
"css"
],
"author": "Tomasz Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/swist/koa-compile-sass/issues"
},
"homepage": "https://github.com/swist/koa-compile-sass#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"extend": "^3.0.0",
"fs-extra": "^5.0.0",
"istanbul": "^0.4.3",
"jshint": "^2.5.6",
"koa": "^2.5.0",
"koa-static": "^4.0.2",
"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-koa": "^1.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"
}
}