forked from csstools/postcss-sass
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.64 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
{
"name": "@csstools/postcss-sass",
"version": "4.0.0",
"description": "Use Sass as a PostCSS plugin",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "jonathantneal/postcss-sass",
"homepage": "https://github.com/jonathantneal/postcss-sass#readme",
"bugs": "https://github.com/jonathantneal/postcss-sass/issues",
"main": "index.cjs.js",
"module": "index.es.mjs",
"files": [
"index.es.mjs",
"index.cjs.js"
],
"scripts": {
"prepublishOnly": "npm test",
"pretest": "rollup -c .rollup.js --silent --exports 'auto'",
"test": "npm run test:js && npm run test:tape",
"test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
"test:tape": "postcss-tape"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@csstools/sass-import-resolve": "^1.0.0",
"sass": "^1.32.4",
"source-map": "~0.7.3"
},
"peerDependencies": {
"postcss": "^8.2.4"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"babel-eslint": "^10.1.0",
"echint": "^4.0.2",
"eslint": "^7.17.0",
"eslint-config-dev": "2.0.0",
"postcss-import": "^14.0.0",
"postcss-scss": "^3.0.4",
"postcss-tape": "6.0.0",
"postcss-unroot": "^1.0.2",
"pre-commit": "^1.2.2",
"rollup": "^2.36.1"
},
"eslintConfig": {
"extends": "dev",
"parser": "babel-eslint"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"sass",
"node",
"lib",
"libsass",
"node-sass",
"preprocessor",
"scss",
"css",
"style",
"extension"
]
}