forked from JPeer264/node-rename-css-selectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "rename-css-selectors",
"version": "1.3.5",
"description": "Rename css classes and id's in files",
"main": "./index.js",
"scripts": {
"test": "mocha -R spec --recursive test lib",
"lint": "eslint lib --ignore-pattern '**/tests/**'",
"fix": "eslint lib --ignore-pattern '**/tests/**' --fix",
"coverage": "istanbul cover _mocha -- -R spec --recursive test lib",
"coveralls": "npm run coverage && coveralls < coverage/lcov.info"
},
"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.1.4",
"fs-extra": "^2.0.0",
"glob": "^7.1.1",
"json-extra": "^0.5.0",
"lodash": "^4.17.4",
"rcs-core": "^2.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}