UNPKG

1.71 kBJSONView Raw
1{
2 "name": "gulp-sass",
3 "version": "6.0.0",
4 "description": "Gulp plugin for sass",
5 "main": "index.js",
6 "engines": {
7 "node": ">=12"
8 },
9 "scripts": {
10 "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",
11 "fix": "npm run lint -- --fix",
12 "mocha": "mocha",
13 "test": "npm run test:node-sass && npm run test:dart-sass && npm run test:legacy-dart-sass && npm run test:sass-embedded",
14 "test:node-sass": "mocha",
15 "test:dart-sass": "mocha -- --sass",
16 "test:legacy-dart-sass": "mocha -- --sass --legacy",
17 "test:sass-embedded": "mocha -- --embedded"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/dlmanning/gulp-sass.git"
22 },
23 "keywords": [
24 "gulpplugin",
25 "sass",
26 "gulp"
27 ],
28 "author": "David Manning",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/dlmanning/gulp-sass/issues"
32 },
33 "homepage": "https://github.com/dlmanning/gulp-sass#readme",
34 "files": [
35 "index.js",
36 "legacy.js"
37 ],
38 "dependencies": {
39 "lodash.clonedeep": "^4.5.0",
40 "picocolors": "^1.0.0",
41 "plugin-error": "^1.0.1",
42 "replace-ext": "^2.0.0",
43 "strip-ansi": "^6.0.1",
44 "vinyl-sourcemaps-apply": "^0.2.1"
45 },
46 "devDependencies": {
47 "autoprefixer": "^10.4.0",
48 "eslint": "^8.5.0",
49 "eslint-config-airbnb-base": "^15.0.0",
50 "eslint-plugin-import": "^2.25.3",
51 "globule": "^1.3.3",
52 "gulp": "^4.0.2",
53 "gulp-postcss": "^9.0.1",
54 "gulp-sourcemaps": "^3.0.0",
55 "gulp-tap": "^2.0.0",
56 "mocha": "^9.1.3",
57 "node-sass": "^7.0.1",
58 "postcss": "^8.4.5",
59 "rimraf": "^3.0.2",
60 "sass": "^1.45.1",
61 "sass-embedded": "^1.49.9",
62 "vinyl": "^2.2.1"
63 }
64}