123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "postcss-modules-extract-imports",
- "version": "1.2.1",
- "description": "A CSS Modules transform to extract local aliases for inline imports",
- "main": "lib/index.js",
- "files": [
- "lib"
- ],
- "scripts": {
- "build": "babel --out-dir lib src",
- "test": "jest --coverage",
- "precommit": "lint-staged",
- "prepublish": "yarn run test && yarn run build"
- },
- "lint-staged": {
- "*.js": [
- "prettier --single-quote --no-semi --write",
- "git add"
- ]
- },
- "babel": {
- "presets": [
- [
- "env",
- {
- "targets": {
- "node": 4
- }
- }
- ]
- ]
- },
- "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": "^6.0.1"
- },
- "devDependencies": {
- "babel-cli": "^6.24.1",
- "babel-eslint": "^7.2.2",
- "babel-jest": "^20.0.3",
- "babel-preset-env": "^1.5.1",
- "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"
- }
- }
|