forked from sass/node-sass-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 879 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
{
"author": "Andrew Nesbitt <[email protected]> (http://andrew.github.com)",
"name": "node-sass-middleware",
"description": "Connect middleware for node-sass",
"version": "1.0.1",
"scripts": {
"lint": "eslint .",
"test": "mocha"
},
"homepage": "https://github.com/sass/node-sass-middleware",
"keywords": [
"sass",
"css",
"libsass"
],
"bugs": {
"url": "https://github.com/sass/node-sass-middleware/issues"
},
"license": "MIT",
"main": "./middleware.js",
"repository": {
"type": "git",
"url": "git://github.com/sass/node-sass-middleware.git"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"node-sass": "8.0.0"
},
"devDependencies": {
"connect": "^3.7.0",
"eslint": "^7.32.0",
"express": "^4.17.1",
"mocha": "^7.2.0",
"should": "^13.2.3",
"supertest": "^6.1.6"
}
}