UNPKG

1.41 kBJSONView Raw
1{
2 "name": "postcss-modules-extract-imports",
3 "version": "3.0.0",
4 "description": "A CSS Modules transform to extract local aliases for inline imports",
5 "main": "src/index.js",
6 "engines": {
7 "node": "^10 || ^12 || >= 14"
8 },
9 "files": [
10 "src"
11 ],
12 "scripts": {
13 "prettier": "prettier -l --ignore-path .gitignore . \"!test/test-cases\"",
14 "eslint": "eslint --ignore-path .gitignore .",
15 "lint": "yarn eslint && yarn prettier",
16 "test:only": "jest",
17 "test:watch": "jest --watch",
18 "test:coverage": "jest --coverage --collectCoverageFrom=\"src/**/*\"",
19 "pretest": "yarn lint",
20 "test": "yarn test:coverage",
21 "prepublishOnly": "yarn test"
22 },
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/css-modules/postcss-modules-extract-imports.git"
26 },
27 "keywords": [
28 "css-modules",
29 "postcss",
30 "plugin"
31 ],
32 "author": "Glen Maddern",
33 "license": "ISC",
34 "bugs": {
35 "url": "https://github.com/css-modules/postcss-modules-extract-imports/issues"
36 },
37 "homepage": "https://github.com/css-modules/postcss-modules-extract-imports",
38 "devDependencies": {
39 "coveralls": "^3.1.0",
40 "eslint": "^7.10.0",
41 "eslint-config-prettier": "^6.12.0",
42 "husky": "^4.3.0",
43 "jest": "^26.5.2",
44 "lint-staged": "^10.4.0",
45 "postcss": "^8.1.1",
46 "prettier": "^2.1.2"
47 },
48 "peerDependencies": {
49 "postcss": "^8.1.0"
50 }
51}