-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "eleventy-plugin-fluid-sass",
"version": "1.0.0",
"description": "Eleventy plugin which compiles sass for Fluid Project websites.",
"publishConfig": {
"access": "public"
},
"main": "index.js",
"type": "module",
"scripts": {
"build": "rimraf _site && eleventy",
"coverage": "c8 -r text -r lcov -x \"test/*.js\" -x \"eleventy.config.js\" -x \"fixtures/**/*.js\" ava",
"lint": "fluid-lint-all",
"start": "rimraf _site && eleventy --serve",
"test": "ava",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluid-project/eleventy-plugin-fluid-sass.git"
},
"keywords": [
"eleventy-plugin"
],
"author": "OCAD University <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/fluid-project/eleventy-plugin-fluid-sass/issues"
},
"homepage": "https://github.com/fluid-project/eleventy-plugin-fluid-sass#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0-beta.1",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint-config-fluid": "^2.1.2",
"fluid-lint-all": "^1.2.11",
"husky": "^9.1.4",
"infusion": "^4.7.1",
"rimraf": "^6.0.1"
},
"dependencies": {
"@11ty/eleventy-utils": "^1.0.3",
"browserslist": "^4.23.3",
"lightningcss": "^1.26.0",
"sass": "^1.77.8"
},
"ava": {
"timeout": "30s"
}
}