-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 931 Bytes
/
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
{
"name": "poliobfusklot",
"version": "1.0.2",
"description": "Инструмент для обфускации CSS-классов в проектах.",
"repository": {
"type": "git",
"url": "git+https://github.com/Poliklot/PoliObfusKlot.git"
},
"author": "Poliklot",
"license": "MIT",
"main": "cli.js",
"bin": {
"poliobfusklot": "./cli.js"
},
"scripts": {
"start": "node cli.js",
"test": "mocha ./tests/**/*.test.js",
"obfuscate:test_project": "node cli.js --config tests/project_1/poliobfusklot.config.json"
},
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/generator": "^7.23.9",
"@babel/parser": "^7.23.9",
"@babel/traverse": "^7.23.9",
"cheerio": "^1.0.0-rc.12",
"css-what": "^6.1.0",
"postcss": "^8.4.31",
"prettier": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.8.6",
"chai": "^4.3.10",
"mocha": "^10.2.0"
}
}