62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "esbuild-plugin-postcss2",
|
|
"version": "0.0.4",
|
|
"description": "Use postcss with esbuild",
|
|
"repository": "https://github.com/martonlederer/esbuild-plugin-postcss2",
|
|
"author": "Marton Lederer <marton@lederer.hu>",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "NODE_ENV=production node build.js && tsc --emitDeclarationOnly",
|
|
"dev": "NODE_ENV=development node build.js",
|
|
"test": "yarn build && cd test && mocha 'index.js' --no-timeout --exit",
|
|
"fmt": "prettier --write .",
|
|
"fmt:check": "prettier --check ."
|
|
},
|
|
"gitHooks": {
|
|
"pre-commit": "prettier --write . && git add -A"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.esm.js",
|
|
"types": "dist/index.d.ts",
|
|
"dependencies": {
|
|
"autoprefixer": "^10.2.4",
|
|
"fs-extra": "^9.1.0",
|
|
"less": "^4.1.1",
|
|
"postcss": "^8.2.6",
|
|
"postcss-modules": "^4.0.0",
|
|
"sass": "^1.32.8",
|
|
"stylus": "^0.54.8",
|
|
"tmp": "^0.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.15",
|
|
"@types/fs-extra": "^9.0.7",
|
|
"@types/less": "^3.0.2",
|
|
"@types/mocha": "^8.2.1",
|
|
"@types/node": "^14.14.28",
|
|
"@types/sass": "^1.16.0",
|
|
"@types/stylus": "^0.48.33",
|
|
"@types/tmp": "^0.2.0",
|
|
"chai": "^4.3.0",
|
|
"esbuild": "^0.8.49",
|
|
"mocha": "^8.3.0",
|
|
"prettier": "^2.2.1",
|
|
"typescript": "^4.1.5",
|
|
"yorkie": "^2.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"esbuild": "^0.8.46",
|
|
"less": "^4.x",
|
|
"postcss": "8.x",
|
|
"sass": "^1.x",
|
|
"stylus": "^0.x"
|
|
}
|
|
}
|