-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
117 lines (117 loc) · 2.63 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "postcss-extend-rule",
"version": "4.0.0",
"description": "Use the @extend at-rule and functional selectors in CSS",
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "https://github.com/csstools/postcss-extend-rule.git"
},
"homepage": "https://github.com/csstools/postcss-extend-rule#readme",
"bugs": "https://github.com/csstools/postcss-extend-rule/issues",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"dist"
],
"scripts": {
"build": "rollup --config rollup.mjs --silent",
"clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"pretest": "npm run build",
"test": "npm run lint && node --test",
"test:rewrite-expects": "REWRITE_EXPECTS=true node --test",
"lint": "eslint src/{*,**/*}.js test/*.mjs --cache --ignore-path .gitignore --quiet"
},
"engines": {
"node": "^12 || ^14 || >=16"
},
"dependencies": {
"postcss-nesting": "^10.1.2"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@csstools/postcss-global-data": "^2.1.1",
"@csstools/postcss-tape": "^4.1.1",
"@rollup/plugin-babel": "^6.0.4",
"eslint": "^8.8.0",
"postcss": "^8.4.6",
"rollup": "^4.9.1"
},
"peerDependencies": {
"postcss": "^8.4.6"
},
"postcssConfig": {
"config": ".tape.js"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"quotes": [
"error",
"single"
],
"comma-dangle": [
"error",
"always-multiline"
],
"semi": [
"error",
"always"
],
"curly": "error",
"brace-style": "error",
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"radix": "error"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"root": true
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"extend",
"matched",
"matches",
"match",
"selectors",
"subclassing",
"subclasses",
"subclass",
"styling",
"styles",
"style",
"placeholder",
"placehold",
"selectors",
"selector",
"chaining"
]
}