-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 1.92 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "rename-css-selectors",
"version": "4.1.0",
"description": "Rename css classes and id's in files",
"main": "dest",
"scripts": {
"test": "jest --coverage",
"build": "tsc && babel dest -d dest",
"lint": "eslint lib/**/*.ts __tests__/**/*.ts",
"fix": "npm run lint -- --fix",
"prepublish": "npm run build"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"rcs": {
"exclude": [
"js",
"no-js"
]
},
"keywords": [
"css",
"minify",
"rename",
"selectors",
"shrink",
"classes",
"compress",
"styles",
"munch"
],
"repository": {
"url": "https://www.github.com/JPeer264/rename-css-selectors",
"type": "git"
},
"author": "Jan Peer Stöcklmair",
"license": "MIT",
"dependencies": {
"async": "^2.6.3",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"json-extra": "^0.5.0",
"lodash.merge": "^4.6.2",
"minimatch": "^3.0.4",
"universalify": "^2.0.0"
},
"peerDependencies": {
"rcs-core": "^3.*"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@types/async": "^3.0.8",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.2",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^13.7.1",
"@types/parse5": "^5.0.2",
"@types/tmp": "^0.1.0",
"@types/universalify": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"html-minifier": "^3.5.20",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"rcs-core": "^3.5.1",
"tmp": "^0.1.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
}
}