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