-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "@researchgate/babel-plugin-transform-scss-import-to-string",
"version": "1.0.0",
"description": "Babel plugin for transforming SCSS imports to static variable declarations with transpiled CSS string",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "spire lint",
"release": "spire release",
"test": "spire test"
},
"repository": "researchgate/babel-plugin-transform-scss-import-to-string",
"keywords": [
"babel",
"scss",
"css",
"inline",
"transform"
],
"author": "Sergey Bekrin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.19.3",
"@researchgate/spire-config": "7.0.0",
"node-sass": "7.0.3",
"spire": "3.2.3",
"spire-plugin-semantic-release": "3.2.3"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
"node-sass": "^4.7.0 || ^5.0.0 || ^8.0.0"
},
"spire": {
"extends": [
[
"@researchgate/spire-config",
{
"eslint": "node",
"jest": "base"
}
]
],
"plugins": [
"spire-plugin-semantic-release"
]
},
"prettier": "spire-plugin-prettier/config"
}