-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 977 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": "@gafreax/csscrunch",
"version": "1.0.18",
"description": "Simple CSS Parser to tokenize CSS, merge rules, and optimize it",
"main": "dist/src/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"clean": "rimraf dist/",
"start": "ts-node src/launch.ts",
"lint": "ts-standard src/**/*.ts",
"lint:fix": "ts-standard --fix src/**/*.ts",
"prebuild": "npm run clean && ts-standard --fix src/**/*.ts tests/**/*.ts",
"prepare": "npm run build && husky install",
"test": "vitest run"
},
"author": "Gabriele Fontana",
"bin": {
"csscrunch": "dist/src/launch.js"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"husky": "^8.0.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typescript": "^5"
},
"dependencies": {
"commander": "^12.1.0",
"vitest": "^2.1.8"
}
}