-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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": "postcss-replace-values",
"version": "3.0.2",
"description": "A PostCSS plugin to replace one color with another",
"main": "dist/index.js",
"source": "lib/index.ts",
"typings": "dist/index.d.ts",
"files": [
"dist/*",
"lib/*"
],
"scripts": {
"build": "tsc lib/index.ts --declaration --outDir dist --skipLibCheck",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:wuifdesign/postcss-replace-values.git"
},
"keywords": [
"postcss",
"color",
"replace"
],
"license": "MIT",
"homepage": "https://github.com/wuifdesign/postcss-replace-values",
"dependencies": {
"color-shorthand-hex-to-six-digit": "^5.0.13",
"lodash.clonedeep": "^4.5.0",
"lodash.isplainobject": "^4.0.6",
"string.prototype.replaceall": "^1.0.8"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"postcss": "^8.4.31",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"postcss": "^8.0.0"
}
}