-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
84 lines (84 loc) · 2.11 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
{
"name": "rcs-core",
"version": "3.7.1",
"description": "Rename css selectors across all files",
"main": "dest",
"scripts": {
"test": "tsc --noEmit && jest --coverage",
"build": "rimraf dest && tsc && babel dest -d dest",
"lint": "eslint lib/**/*.ts __tests__/**/*.ts",
"fix": "eslint lib/**/*.ts __tests__/**/*.ts --fix",
"prepublishOnly": "npm run build",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"keywords": [
"css",
"stylesheet",
"minify",
"rename",
"selectors",
"shrink",
"classes",
"compress",
"styles",
"munch"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JPeer264/node-rcs-core.git"
},
"bugs": {
"url": "https://github.com/JPeer264/node-rcs-core/issues"
},
"homepage": "https://github.com/JPeer264/node-rcs-core#readme",
"dependencies": {
"ast-traverse": "^0.1.1",
"decimal-to-any": "^1.0.5",
"espree": "^9.0.0",
"lodash.merge": "^4.6.2",
"parse5": "^6.0.1",
"parse5-traverse": "^1.0.3",
"postcss": "^8.3.9",
"pug-code-gen": "^2.0.3",
"pug-lexer": "^5.0.1",
"pug-parser": "^6.0.0",
"pug-runtime": "^3.0.1",
"pug-source-gen": "^0.0.2",
"pug-walk": "^2.0.0",
"recast": "^0.20.5"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@types/jest": "^27.0.2",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^16.11.1",
"@types/parse5": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"html-minifier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.3.1",
"lint-staged": "^11.2.3",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"author": "Jan Peer Stöcklmair",
"license": "MIT"
}