| 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
 | | { |  |   "name": "postcss-prefix-selector", |  |   "description": "Prefix all CSS rules with a selector", |  |   "version": "1.16.0", |  |   "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)", |  |   "contributors": [ |  |     "Valentin Radulescu <hi@valentin.io> (https://valentin.io)" |  |   ], |  |   "license": "MIT", |  |   "repository": "RadValentin/postcss-prefix-selector", |  |   "bugs": "https://github.com/RadValentin/postcss-prefix-selector/issues", |  |   "homepage": "https://github.com/RadValentin/postcss-prefix-selector", |  |   "peerDependencies": { |  |     "postcss": ">4 <9" |  |   }, |  |   "devDependencies": { |  |     "husky": "^4.0.2", |  |     "istanbul": "~0.4.5", |  |     "lint-staged": "^10.0.3", |  |     "mocha": "^9.2.2", |  |     "postcss": "^8.0.0", |  |     "postcss-nested": "^5.0.6", |  |     "prettier": "^2.0.0" |  |   }, |  |   "scripts": { |  |     "test": "mocha", |  |     "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", |  |     "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot", |  |     "lint": "prettier --write '**/*.{js,css}'" |  |   }, |  |   "lint-staged": { |  |     "*.js": [ |  |       "prettier --write" |  |     ] |  |   }, |  |   "prettier": { |  |     "printWidth": 80, |  |     "singleQuote": true |  |   }, |  |   "keywords": [ |  |     "postcss", |  |     "prefix", |  |     "selectors", |  |     "postcss-plugin", |  |     "css", |  |     "selector", |  |     "plugin" |  |   ], |  |   "files": [ |  |     "index.js" |  |   ], |  |   "husky": { |  |     "hooks": { |  |       "pre-commit": "lint-staged" |  |     } |  |   } |  | } | 
 |