-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
{
"name": "sass-path-resolver",
"description": "A custom FileImporter for Dart Sass that adds include path resolution, similar to the deprecated includePaths option.",
"version": "1.0.2",
"license": "MIT",
"type": "module",
"main": "sass-path-resolver.js",
"types": "sass-path-resolver.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/stamat/sass-path-resolver.git"
},
"files": [
"sass-resolver.js",
"sass-resolver.d.ts"
],
"author": "Stamat <@stamat> (http://stamat.info)",
"homepage": "https://github.com/stamat/sass-path-resolver",
"private": false,
"keywords": [
"sass",
"resolver",
"importer",
"dart-sass",
"path-resolver",
"file-importer"
],
"scripts": {
"lint": "eslint ./sass-resolver.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest"
},
"peerDependencies": {
"sass": "^1.45.0"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"eslint": "^9.39.3",
"jest": "^30.2.0",
"neostandard": "^0.12.2",
"sass": "^1.97.3"
},
"overrides": {
"minimatch": ">=10.2.1"
}
}