-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 890 Bytes
/
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
{
"name": "eleventy-plugin-less",
"version": "1.0.1",
"description": "Plugin for eleventy (11ty) that converts Less stylesheets to CSS",
"main": ".eleventy.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint .",
"autofix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfriedly/eleventy-plugin-less.git"
},
"keywords": [
"eleventy-plugin",
"eleventy",
"11ty",
"less",
"css",
"style",
"stylesheet",
"stylesheets"
],
"author": "Nathan Friedly",
"license": "MIT",
"bugs": {
"url": "https://github.com/nfriedly/eleventy-plugin-less/issues"
},
"homepage": "https://github.com/nfriedly/eleventy-plugin-less#readme",
"dependencies": {
"less": "^4.2.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"eslint": "^9.4.0",
"globals": "^15.4.0"
}
}