-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "rollup-plugin-minify-tagged-css-template",
"version": "0.0.2",
"description": "Plugin to minify CSS content of tagged template string literals",
"homepage": "https://github.com/notlmn/rollup-plugin-minify-tagged-css-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/notlmn/rollup-plugin-minify-tagged-css-template.git"
},
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs",
"cjs": "ucjs esm cjs",
"lint": "xo rollup.config.js",
"test": "npm run lint && npm run build && rollup -c test/rollup.config.js"
},
"keywords": [
"rollup",
"plugin",
"template string",
"template literal",
"tagged template string literal",
"css",
"minify"
],
"author": "Laxman Damera",
"license": "MIT",
"devDependencies": {
"@babel/parser": "^7.10.4",
"plain-tag": "^0.1.0",
"rollup": "^2.18.2",
"ucjs": "^0.1.1",
"xo": "^0.32.1"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"dependencies": {
"rollup-plugin-transform-tagged-template": "^0.0.3"
}
}