UNPKG

@stencil/postcss

Version:

The Stencil PostCSS Plugin

75 lines (74 loc) 1.86 kB
{ "name": "@stencil/postcss", "version": "2.1.0", "license": "MIT", "main": "dist/index.cjs.js", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/" ], "scripts": { "prebuild": "rimraf ./dist", "build": "npm run prebuild && tsc && npm run rollup && npm run test", "watch": "tsc --watch", "rollup": "rollup -c rollup.config.js", "version": "npm run build", "release": "np", "lint": "npm run lint.prettier", "lint.prettier": "prettier --write 'src/**/*.ts'", "test": "jest --coverage", "test.ci": "npm run test.jest && npm run test.prettier", "test.jest": "jest", "test.prettier": "prettier --check 'src/**/*.ts'", "test.watch": "jest --watch" }, "dependencies": { "autoprefixer": "^10.3.6", "postcss": "~8.3.8" }, "peerDependencies": { "@stencil/core": ">=2.0.0" }, "devDependencies": { "@ionic/prettier-config": "^2.0.0", "@stencil/core": "^2.8.1", "@types/jest": "^26.0.19", "@types/node": "^14.17.18", "jest": "^26.6.3", "np": "^7.0.0", "prettier": "^2.2.1", "rimraf": "^3.0.2", "rollup": "^2.35.0", "typescript": "^4.1.3" }, "repository": { "type": "git", "url": "git+https://github.com/ionic-team/stencil-postcss.git" }, "author": "Ionic Team", "homepage": "https://stenciljs.com/", "description": "The Stencil PostCSS Plugin", "keywords": [ "stencil", "postcss" ], "jest": { "transform": { "^.+\\.(js|ts|tsx)$": "<rootDir>/test/jest.preprocessor.js" }, "testRegex": "(\\.(test|spec))\\.(tsx?|jsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "json", "jsx" ], "testURL": "http://localhost", "collectCoverageFrom": [ "src/**/*.{ts,tsx}" ] }, "prettier": "@ionic/prettier-config" }