-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
52 lines (52 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
44
45
46
47
48
49
50
51
52
{
"name": "postcss-rename",
"version": "0.6.1",
"description": "A PostCSS plugin to replace class names based on a customizable renaming scheme.",
"keywords": [
"postcss",
"css",
"postcss-plugin"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"test": "jest",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"license": "Apache-2.0",
"repository": "https://github.com/google/postcss-rename",
"dependencies": {
"postcss-selector-parser": "^6.0.4"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@bazel/typescript": "^1.0.1",
"@types/conditional": "^5.3.0",
"@types/jest": "^26.0.20",
"@types/node": "^12.12.7",
"babel-jest": "^24.9.0",
"gts": "^3.1.0",
"jest": "^27.0.4",
"jest-cli": "^27.0.4",
"postcss": "^8.2.6",
"ts-jest": "^27.0.3",
"typescript": "^3.8.0"
},
"peerDependencies": {
"postcss": "^8.2.6"
},
"engines": {
"node": ">=8.3.0"
}
}