-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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
{
"name": "@lmcd/gulp-dartsass",
"version": "0.1.1",
"description": "Sass-wrapper for Gulp with support for the modern Dart Sass APIs.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint --report-unused-disable-directives --fix ."
},
"engines": {
"node": ">=16"
},
"files": [
"README.md",
"LICENSE",
"index.js"
],
"keywords": [
"gulpplugin",
"sass",
"gulp",
"gulp-sass",
"css",
"scss"
],
"bugs": {
"url": "https://github.com/lachlanmcdonald/gulp-dartsass/issues"
},
"author": {
"name": "Lachlan McDonald",
"url": "https://github.com/lachlanmcdonald"
},
"homepage": "https://github.com/lachlanmcdonald/gulp-dartsass",
"repository": {
"type": "git",
"url": "https://github.com/lachlanmcdonald/gulp-dartsass.git"
},
"license": "MIT",
"devDependencies": {
"@lmcd/eslint-config": "^0.6.4",
"@stylistic/eslint-plugin": "^1.5.4",
"chalk": "^4.1.2",
"eslint-plugin-jest": "^27.6.3",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-tap": "^2.0.0",
"jest": "^29.7.0",
"jest-light-runner": "^0.6.0",
"sass": "^1.70.0",
"vinyl": "^3.0.0"
},
"dependencies": {
"plugin-error": "^2.0.1",
"replace-ext": "^2.0.0",
"through2": "^4.0.2",
"vinyl-sourcemaps-apply": "^0.2.1"
}
}