forked from silvermine/postcss-css-var-fallback
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "@silvermine/postcss-css-var-fallback",
"version": "1.0.0-rc.1",
"description": "PostCSS plugin to insert fallbacks for CSS vars",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"css variables"
],
"scripts": {
"test": "check-node-version --npm 8.5.5 && jest --coverage --coverageThreshold '{}'",
"lint": "eslint .",
"commitlint": "commitlint --from 62edc48",
"markdownlint": "markdownlint \"README.md\"",
"standards": "npm run lint && npm run markdownlint"
},
"author": "Kevin Muncie <kevin@kmuncie.com>",
"license": "MIT",
"repository": "@silvermine/postcss-css-var-fallback",
"peerDependencies": {
"postcss": "^8.4.14"
},
"devDependencies": {
"@silvermine/eslint-config": "3.0.1",
"@silvermine/standardization": "2.0.0",
"coveralls": "3.1.1",
"eslint": "6.8.0",
"eslint-plugin-jest": "24.2.1",
"jest": "26.6.3"
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"dependencies": {
"postcss": "8.4.14"
}
}