-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
111 lines (111 loc) · 2.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@csstools/postcss-sass",
"version": "5.1.1",
"description": "Use Sass as a PostCSS plugin",
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": "jonathantneal/postcss-sass",
"homepage": "https://github.com/csstools/postcss-sass#readme",
"bugs": "https://github.com/csstools/postcss-sass/issues",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"dist"
],
"scripts": {
"prepublishOnly": "npm test",
"pretest": "rollup -c rollup.mjs --silent --exports 'auto'",
"test": "npm run test:js && npm run test:tape",
"test:js": "eslint *.mjs src/*.mjs test/*.mjs --cache --ignore-path .gitignore --quiet",
"test:tape": "node --test",
"test:rewrite-expects": "REWRITE_EXPECTS=true node --test"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"dependencies": {
"@csstools/sass-import-resolve": "^1.0.0",
"sass": "^1.69.5",
"source-map": "~0.7.4"
},
"peerDependencies": {
"postcss": "^8.4.6"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@rollup/plugin-babel": "^6.0.4",
"@babel/eslint-parser": "^7.23.3",
"eslint": "^8.56.0",
"eslint-config-dev": "^3.3.1",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"@csstools/postcss-tape": "^4.1.1",
"rollup": "^4.9.1"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"quotes": [
"error",
"single"
],
"comma-dangle": [
"error",
"always-multiline"
],
"semi": [
"error",
"always"
],
"curly": "error",
"brace-style": "error",
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"radix": "error"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"root": true
},
"postcssConfig": {
"config": ".tape.js",
"plugin": "./dist/index.cjs"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"sass",
"node",
"lib",
"libsass",
"node-sass",
"preprocessor",
"scss",
"css",
"style",
"extension"
]
}