| 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
 | | { |  |   "name": "postcss-modules-extract-imports", |  |   "version": "2.0.0", |  |   "description": "A CSS Modules transform to extract local aliases for inline imports", |  |   "main": "src/index.js", |  |   "engines": { |  |     "node": ">= 6" |  |   }, |  |   "files": [ |  |     "src" |  |   ], |  |   "scripts": { |  |     "test": "jest --coverage", |  |     "precommit": "lint-staged", |  |     "prepublish": "yarn run test" |  |   }, |  |   "lint-staged": { |  |     "*.js": [ |  |       "prettier --single-quote --no-semi --write", |  |       "git add" |  |     ] |  |   }, |  |   "repository": { |  |     "type": "git", |  |     "url": "https://github.com/css-modules/postcss-modules-extract-imports.git" |  |   }, |  |   "keywords": [ |  |     "css-modules", |  |     "postcss", |  |     "plugin" |  |   ], |  |   "author": "Glen Maddern", |  |   "license": "ISC", |  |   "bugs": { |  |     "url": "https://github.com/css-modules/postcss-modules-extract-imports/issues" |  |   }, |  |   "homepage": "https://github.com/css-modules/postcss-modules-extract-imports", |  |   "dependencies": { |  |     "postcss": "^7.0.5" |  |   }, |  |   "devDependencies": { |  |     "codecov.io": "^0.1.2", |  |     "coveralls": "^2.11.2", |  |     "husky": "^0.13.3", |  |     "jest": "^20.0.3", |  |     "lint-staged": "^3.4.2", |  |     "prettier": "^1.3.1" |  |   } |  | } | 
 |