-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "rollup-plugin-inline-postcss",
"version": "3.0.1",
"description": "Rollup plugin that transforms inline styling with PostCSS",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:dist": "cp src/package.json dist/package.json && cp README.md dist/README.md && cp CHANGELOG.md dist/CHANGELOG.md",
"prettier": "prettier --write .",
"test": "jest",
"test:clean": "rm -rf test/extract",
"version": "./version.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steveblue/rollup-plugin-inline-postcss.git"
},
"keywords": [
"rollup",
"postcss",
"plugin"
],
"author": "Steve Belovarich",
"license": "MIT",
"bugs": {
"url": "https://github.com/steveblue/rollup-plugin-inline-postcss/issues"
},
"homepage": "https://github.com/steveblue/rollup-plugin-inline-postcss#readme",
"dependencies": {
"findup": "^0.1.5",
"postcss": "^8.3.5",
"rollup": "^2.0.0",
"rollup-pluginutils": "^2.3.3"
},
"devDependencies": {
"@types/node": "^14.14.22",
"jest": "^26.6.0",
"json-bump": "^1.0.2",
"postcss-csso": "^5.0.0",
"postcss-rgb-plz": "^2.0.2",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}