This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.62 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
{
"name": "@styled-jsx/plugin-sass",
"version": "0.0.0-development",
"description": "Plugin to add Sass support to styled-jsx.",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"styled-jsx-plugin",
"styled-jsx",
"sass",
"scss",
"css-in-js"
],
"author": "Marton Lederer",
"repository": {
"type": "git",
"url": "https://github.com/Thream/styled-jsx-plugin-sass.git"
},
"bugs": {
"url": "https://github.com/Thream/styled-jsx-plugin-sass/issues"
},
"homepage": "https://github.com/Thream/styled-jsx-plugin-sass#readme",
"standard": {
"envs": [
"node",
"mocha"
]
},
"files": [
"index.js"
],
"scripts": {
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
"lint:javascript": "standard",
"release": "semantic-release",
"test": "mocha test.js",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"strip-indent": "3.0.0"
},
"devDependencies": {
"@types/node": "20.3.3",
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"editorconfig-checker": "5.1.1",
"husky": "8.0.3",
"markdownlint-cli2": "0.8.1",
"markdownlint-rule-relative-links": "2.1.0",
"mocha": "10.2.0",
"pinst": "3.0.0",
"sass": "1.63.6",
"semantic-release": "21.0.6",
"standard": "17.1.0"
},
"peerDependencies": {
"sass": "*"
}
}