-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.82 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "gulp-stylelint-esm",
"version": "3.0.0",
"description": "Gulp plugin for stylelint with ES module support.",
"author": {
"name": "Adorade",
"email": "office.adorade@gmail.com",
"url": "https://adorade.ro"
},
"homepage": "https://github.com/adorade/gulp-stylelint-esm",
"repository": {
"type": "git",
"url": "git+https://github.com/adorade/gulp-stylelint-esm.git"
},
"type": "module",
"exports": {
".": {
"types": "./types/index.d.mts",
"default": "./src/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"src/*.mjs",
"types/*.d.mts"
],
"types": "types",
"keywords": [
"gulpplugin",
"gulpfriendly",
"stylelint",
"postcss",
"css",
"scss",
"esm"
],
"scripts": {
"lint": "eslint {src,test}/**/*.{mjs,js}",
"lint:fix": "eslint {src,test}/**/*.{mjs,js} --fix",
"jest": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js -i",
"jest:coverage": "yarn run jest --coverage",
"test": "yarn run lint && yarn run jest",
"prepublishOnly": "yarn test"
},
"peerDependencies": {
"stylelint": "16"
},
"dependencies": {
"@adorade/plugin-error": "2.0.1",
"@jridgewell/trace-mapping": "0.3.25",
"ansi-colors": "4.1.3",
"fancy-log": "2.0.0",
"text-table": "0.2.0",
"write-file-atomic": "6.0.0"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/eslint-parser": "7.25.1",
"@babel/preset-env": "7.25.4",
"babel-jest": "29.7.0",
"eslint": "8.57.0",
"eslint-config-stylelint": "22.0.0",
"gulp": "5.0.0",
"gulp-clean-css": "4.3.0",
"gulp-concat": "2.6.1",
"jest": "29.7.0",
"sinon": "19.0.2",
"stylelint": "16.9.0",
"vinyl": "3.0.0"
},
"engines": {
"node": ">=18.12.0"
},
"license": "MIT"
}