-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "compile-sass",
"version": "2.0.0",
"description": "A module to compile SASS on-the-fly and/or save it to CSS files",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test:watch": "NODE_ENV=test jest --watch --verbose .",
"test": "NODE_ENV=test jest .",
"build": "tsc",
"start": "tsc -w"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eiskalteschatten/compile-sass.git"
},
"files": [
"dist"
],
"keywords": [
"sass",
"scss",
"css",
"express",
"compile",
"style",
"preprocess",
"libsass"
],
"author": "Alex Seifert",
"license": "MIT",
"bugs": {
"url": "https://github.com/eiskalteschatten/compile-sass/issues"
},
"homepage": "https://github.com/eiskalteschatten/compile-sass#readme",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jest": "^29.2.0",
"@types/node": "^16.11.26",
"bootstrap": "^5.2.2",
"express": "^4.18.2",
"jest": "^29.2.1",
"jest-environment-node-single-context": "^29.0.0",
"sass": "^1.55.0",
"ts-jest": "^29.0.3",
"typescript": "^4.2.4"
},
"peerDependencies": {
"express": "^4.18.2",
"sass": "^1.55.0"
}
}