forked from martonlederer/esbuild-plugin-postcss2
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.84 KB
/
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
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
{
"name": "@frappe/esbuild-plugin-postcss2",
"version": "0.1.3",
"description": "Use postcss with esbuild",
"repository": {
"type": "git",
"url": "git+https://github.com/frappe/esbuild-plugin-postcss2.git"
},
"author": "Marton Lederer <marton@lederer.hu>",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "cross-env NODE_ENV=production node build.js",
"dev": "cross-env 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",
"src/modules.d.ts"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "src/modules.d.ts",
"dependencies": {
"autoprefixer": "^10.2.5",
"fs-extra": "^9.1.0",
"less": "^4.x",
"postcss-modules": "^4.0.0",
"resolve-file": "^0.3.0",
"sass": "^1.x",
"stylus": "^0.x",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/fs-extra": "^9.0.9",
"@types/less": "^3.0.2",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@types/sass": "^1.16.0",
"@types/stylus": "^0.48.33",
"@types/tmp": "^0.2.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"esbuild": "^0.11.2",
"mocha": "^8.3.2",
"normalize.css": "^8.0.1",
"postcss-import": "^14.0.2",
"prettier": "^2.2.1",
"typescript": "^4.2.3",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"less": "^4.x",
"postcss": "8.x",
"sass": "^1.x",
"stylus": "^0.x"
},
"bugs": {
"url": "https://github.com/frappe/esbuild-plugin-postcss2/issues"
},
"homepage": "https://github.com/frappe/esbuild-plugin-postcss2#readme"
}