This repository has been archived by the owner on Dec 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
119 lines (119 loc) · 2.54 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
118
119
{
"name": "postcss-nesting",
"description": "Nest rules inside each other in CSS",
"license": "CC0-1.0",
"version": "10.0.2",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"jsdelivr": "dist/index.mjs",
"unpkg": "dist/index.mjs",
"publishConfig": {
"access": "public"
},
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"bugs": "https://github.com/csstools/postcss-nesting/issues",
"homepage": "https://github.com/csstools/postcss-nesting#readme",
"repository": "csstools/postcss-nesting",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"files": [
"dist",
"mod.js"
],
"scripts": {
"prepublishOnly": "npm run build && npm test",
"build": "rollup -c .rollup.js",
"test": "node .bin/test.js",
"test:lint": "node .bin/test-lint.js",
"test:tape": "node .bin/test-tape.js",
"test:deno": "deno run --unstable --allow-env --allow-read .bin/test-deno.js"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"eslint": "^8.1.0",
"rollup": "^2.58.3",
"rollup-plugin-terser": "^7.0.2",
"postcss": "8.3.11",
"pre-commit": "1.2.2"
},
"browserslist": [
"node >= 12"
],
"engines": {
"node": ">= 12"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"rules": {
"semi": [
"error",
"never"
]
}
},
"peerDependencies": {
"postcss": "^8.2"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 240,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": [
"*.json",
"*.md",
".prettierrc",
"*.yml"
],
"options": {
"useTabs": false
}
}
]
},
"sideEffects": false,
"keywords": [
"postcss",
"postcss-plugin",
"css",
"atrules",
"child",
"children",
"cssnext",
"nested",
"nestings",
"rules",
"selectors",
"syntax",
"specifications",
"specs",
"w3c",
"csswg"
],
"dependencies": {
"postcss-selector-parser": "6.0.6"
}
}