-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 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
{
"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": {
"check-node-version": "check-node-version --node $(cat .nvmrc) --npm 10.5.0 --print",
"test": "jest --coverage --coverageThreshold '{}'",
"lint": "eslint .",
"commitlint": "commitlint --from 62edc48",
"markdownlint": "markdownlint \"README.md\"",
"standards": "npm run lint && npm run markdownlint && npm run commitlint"
},
"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"
}
}