1 | {
|
2 | "name": "rollup-plugin-postcss",
|
3 | "version": "4.0.2",
|
4 | "description": "Seamless integration between Rollup and PostCSS",
|
5 | "main": "dist/index.js",
|
6 | "files": [
|
7 | "dist",
|
8 | "types/index.d.ts"
|
9 | ],
|
10 | "scripts": {
|
11 | "test": "npm run lint && jest",
|
12 | "test:cov": "npm run lint && jest --coverage",
|
13 | "build": "bili",
|
14 | "lint": "xo",
|
15 | "prepublishOnly": "npm run build"
|
16 | },
|
17 | "repository": {
|
18 | "type": "git",
|
19 | "url": "git+https://github.com/egoist/rollup-plugin-postcss.git"
|
20 | },
|
21 | "keywords": [
|
22 | "postcss",
|
23 | "rollup"
|
24 | ],
|
25 | "author": "EGOIST <0x142857@gmail.com>",
|
26 | "license": "MIT",
|
27 | "bugs": {
|
28 | "url": "https://github.com/egoist/rollup-plugin-postcss/issues"
|
29 | },
|
30 | "engines": {
|
31 | "node": ">=10"
|
32 | },
|
33 | "types": "./types/index.d.ts",
|
34 | "homepage": "https://github.com/egoist/rollup-plugin-postcss#readme",
|
35 | "devDependencies": {
|
36 | "@babel/core": "^7.12.9",
|
37 | "@babel/preset-env": "^7.12.7",
|
38 | "autoprefixer": "^10.0.4",
|
39 | "babel-core": "^7.0.0-bridge.0",
|
40 | "babel-jest": "^26.6.3",
|
41 | "bili": "^5.0.5",
|
42 | "eslint-config-rem": "^4.0.0",
|
43 | "fs-extra": "^9.0.1",
|
44 | "jest": "^26.6.3",
|
45 | "less": "^3.12.2",
|
46 | "node-sass": "^5.0.0",
|
47 | "postcss": "^8.2.7",
|
48 | "rollup": "^2.34.2",
|
49 | "stylus": "^0.54.8",
|
50 | "sugarss": "^3.0.3",
|
51 | "xo": "^0.35.0"
|
52 | },
|
53 | "dependencies": {
|
54 | "chalk": "^4.1.0",
|
55 | "concat-with-sourcemaps": "^1.1.0",
|
56 | "cssnano": "^5.0.1",
|
57 | "import-cwd": "^3.0.0",
|
58 | "p-queue": "^6.6.2",
|
59 | "pify": "^5.0.0",
|
60 | "postcss-load-config": "^3.0.0",
|
61 | "postcss-modules": "^4.0.0",
|
62 | "promise.series": "^0.2.0",
|
63 | "resolve": "^1.19.0",
|
64 | "rollup-pluginutils": "^2.8.2",
|
65 | "safe-identifier": "^0.4.2",
|
66 | "style-inject": "^0.3.0"
|
67 | },
|
68 | "peerDependencies": {
|
69 | "postcss": "8.x"
|
70 | },
|
71 | "xo": {
|
72 | "extends": "rem",
|
73 | "envs": [
|
74 | "jest"
|
75 | ],
|
76 | "rules": {
|
77 | "import/prefer-default-export": 0,
|
78 | "import/extensions": 0,
|
79 | "import/no-unassigned-import": 0,
|
80 | "@typescript-eslint/semi": 0,
|
81 | "eslint-comments/disable-enable-pair": 0,
|
82 | "promise/prefer-await-to-then": 0
|
83 | }
|
84 | },
|
85 | "jest": {
|
86 | "testEnvironment": "node"
|
87 | },
|
88 | "babel": {
|
89 | "presets": [
|
90 | [
|
91 | "@babel/preset-env",
|
92 | {
|
93 | "targets": {
|
94 | "node": "6"
|
95 | }
|
96 | }
|
97 | ]
|
98 | ]
|
99 | },
|
100 | "release": {
|
101 | "branches": [
|
102 | "master",
|
103 | "next"
|
104 | ]
|
105 | }
|
106 | }
|