-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "@gafreax/cssparser",
"version": "1.0.12",
"description": "Simple CSS Parser to tokenize CSS, merge rules, and optimize it",
"main": "dist/src/index.js",
"scripts": {
"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",
"prepare": "npm run build && husky install",
"test": "jest"
},
"author": "Gabriele Fontana",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/clean-css": "^4.2.11",
"@types/jest": "^29.5.14",
"husky": "^8.0.0",
"jest": "^29.7.0",
"mocha": "^10.8.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typescript": "^5.6.3"
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"commander": "^12.1.0"
}
}