forked from discord/postcss-theme-shorthand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 955 Bytes
/
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
{
"name": "postcss-theme-shorthand",
"version": "1.0.0",
"description": "PostCSS plugin that allows the use of 'light-' and 'dark-' property prefixes for themeing.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"theme"
],
"author": "TheSisb <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hammerandchisel/postcss-theme-shorthand.git"
},
"bugs": {
"url": "https://github.com/hammerandchisel/postcss-theme-shorthand/issues"
},
"homepage": "https://github.com/hammerandchisel/postcss-theme-shorthand",
"dependencies": {
"postcss": "6.0.5"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^18.0.0"
},
"scripts": {
"test": "jest && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss",
"env": {
"jest": true
}
},
"main": "index.js"
}