-
Notifications
You must be signed in to change notification settings - Fork 381
/
package.json
64 lines (64 loc) · 1.67 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
59
60
61
62
63
64
{
"name": "gulp-sass",
"version": "6.0.0",
"description": "Gulp plugin for sass",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
"fix": "npm run lint -- --fix",
"mocha": "mocha",
"test": "npm run test:node-sass && npm run test:dart-sass && npm run test:legacy-dart-sass && npm run test:sass-embedded",
"test:node-sass": "mocha",
"test:dart-sass": "mocha -- --sass",
"test:legacy-dart-sass": "mocha -- --sass --legacy",
"test:sass-embedded": "mocha -- --embedded"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlmanning/gulp-sass.git"
},
"keywords": [
"gulpplugin",
"sass",
"gulp"
],
"author": "David Manning",
"license": "MIT",
"bugs": {
"url": "https://github.com/dlmanning/gulp-sass/issues"
},
"homepage": "https://github.com/dlmanning/gulp-sass#readme",
"files": [
"index.js",
"legacy.js"
],
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"picocolors": "^1.0.0",
"plugin-error": "^1.0.1",
"replace-ext": "^2.0.0",
"strip-ansi": "^6.0.1",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"globule": "^1.3.3",
"gulp": "^4.0.2",
"gulp-postcss": "^9.0.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-tap": "^2.0.0",
"mocha": "^9.1.3",
"node-sass": "^7.0.1",
"postcss": "^8.4.5",
"rimraf": "^3.0.2",
"sass": "^1.45.1",
"sass-embedded": "^1.49.9",
"vinyl": "^2.2.1"
}
}