forked from sass/node-sass-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"author": "Andrew Nesbitt <andrewnez@gmail.com> (http://andrew.github.com)",
"name": "node-sass-middleware",
"description": "Connect middleware for node-sass",
"version": "0.11.1",
"scripts": {
"lint": "./node_modules/.bin/eslint middleware.js test",
"test": "./node_modules/.bin/mocha"
},
"homepage": "https://github.com/sass/node-sass-middleware",
"keywords": [
"sass",
"css",
"libsass"
],
"bugs": {
"url": "https://github.com/sass/node-sass-middleware/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sass/node-sass-middleware/blob/master/LICENSE"
}
],
"main": "./middleware.js",
"repository": {
"type": "git",
"url": "git://github.com/sass/node-sass-middleware.git"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"mkdirp": "^0.5.1",
"node-sass": "^4.12.0"
},
"devDependencies": {
"connect": "^3.7.0",
"eslint": "^6.5.1",
"express": "^4.17.1",
"mocha": "^6.2.2",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}