-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "@bernardogiordano/ngx-stylesweep",
"version": "1.2.1",
"description": "ngx-stylesweep is a command-line tool that removes empty style files from your Angular components.",
"main": "./dist/index.js",
"files": [
"bin",
"dist"
],
"bin": {
"ngx-stylesweep": "bin/cli.js"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BernardoGiordano/ngx-stylesweep.git"
},
"keywords": [
"angular",
"styles",
"clean",
"empty",
"remove"
],
"author": "Bernardo Giordano",
"license": "MIT",
"bugs": {
"url": "https://github.com/BernardoGiordano/ngx-stylesweep/issues"
},
"homepage": "https://github.com/BernardoGiordano/ngx-stylesweep",
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}