mirror of https://gitee.com/antv-l7/antv-l7
88 lines
1.9 KiB
JSON
88 lines
1.9 KiB
JSON
{
|
|
"name": "rollup-plugin-postcss",
|
|
"version": "2.0.3",
|
|
"description": "Seamless integration between Rollup and PostCSS",
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"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": ">=6"
|
|
},
|
|
"homepage": "https://github.com/egoist/rollup-plugin-postcss#readme",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.2.2",
|
|
"autoprefixer": "^7.2.4",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-jest": "^23.6.0",
|
|
"bili": "^4.2.4",
|
|
"eslint-config-rem": "^4.0.0",
|
|
"fs-extra": "^7.0.1",
|
|
"jest": "^23.6.0",
|
|
"less": "^2.7.3",
|
|
"node-sass": "^4.7.2",
|
|
"stylus": "^0.54.5",
|
|
"sugarss": "^1.0.1",
|
|
"xo": "^0.18.2"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^2.4.2",
|
|
"concat-with-sourcemaps": "^1.0.5",
|
|
"cssnano": "^4.1.8",
|
|
"import-cwd": "^2.1.0",
|
|
"p-queue": "^2.4.2",
|
|
"pify": "^3.0.0",
|
|
"postcss": "^7.0.14",
|
|
"postcss-load-config": "^2.0.0",
|
|
"postcss-modules": "^1.4.1",
|
|
"promise.series": "^0.2.0",
|
|
"reserved-words": "^0.1.2",
|
|
"resolve": "^1.5.0",
|
|
"rollup-pluginutils": "^2.0.1",
|
|
"style-inject": "^0.3.0"
|
|
},
|
|
"xo": {
|
|
"extends": "rem",
|
|
"envs": [
|
|
"jest"
|
|
],
|
|
"rules": {
|
|
"import/prefer-default-export": 0
|
|
}
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"targets": {
|
|
"node": "6"
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}
|
|
} |