-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.68 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
{
"name": "postcss-nested-import",
"version": "1.3.0",
"description": "PostCSS plugin for importing other stylesheet source files anywhere in your CSS.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"import"
],
"author": "Erik Harper <eriklharper@gmail.com>",
"license": "MIT",
"repository": "eriklharper/postcss-nested-import",
"bugs": {
"url": "https://github.com/eriklharper/postcss-nested-import/issues"
},
"homepage": "https://github.com/eriklharper/postcss-nested-import",
"scripts": {
"unit": "uvu . '\\.test\\.(ts|js)$'",
"test": "c8 npm run unit && eslint .",
"format": "prettier --write . --ignore-unknown"
},
"peerDependencies": {
"postcss": "^8.3.0"
},
"engines": {
"node": ">=12.0"
},
"prettier": {
"trailingComma": "none"
},
"eslintConfig": {
"extends": [
"@logux/eslint-config",
"plugin:prettier/recommended"
],
"rules": {
"security/detect-non-literal-require": "off",
"node/global-require": "off",
"consistent-return": "off"
}
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 100,
"check-coverage": true
},
"devDependencies": {
"@logux/eslint-config": "^51.0.1",
"c8": "^8.0.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"postcss": "^8.4.27",
"prettier": "^3.0.1",
"uvu": "^0.5.6"
},
"dependencies": {
"resolve": "^1.22.4"
}
}