forked from kib357/esbuild-postcss-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1002 Bytes
/
package.json
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
{
"name": "esbuild-postcss-plugin",
"version": "0.0.7",
"description": "ESBuild plugin for PostCSS with CSS modules",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist/ && tsc",
"test": "ts-mocha **/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kib357/esbuild-postcss-plugin.git"
},
"keywords": [
"ESBuild",
"PostCSS",
"css-modules"
],
"author": "Evgeniy Kuvshinov",
"license": "MIT",
"bugs": {
"url": "https://github.com/kib357/esbuild-postcss-plugin/issues"
},
"homepage": "https://github.com/kib357/esbuild-postcss-plugin#readme",
"dependencies": {
"esbuild": "^0.14.48",
"postcss": "^8.4.14",
"postcss-modules": "^4.3.1"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"expect": "^28.1.1",
"mocha": "^10.0.0",
"typescript": "^4.7.4",
"ts-mocha": "^10.0.0"
}
}