-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
78 lines (78 loc) · 1.93 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
{
"name": "ngx-unused-css",
"version": "3.0.4",
"description": "Detect unused CSS in angular components",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"lint": "eslint --ext .ts src/**",
"lint:fix": "eslint --fix --ext .ts src/**",
"test": "jest src/** --runInBand",
"e2e": "jest e2e/test.ts",
"e2e:manual": "cd e2e && npm test",
"e2e:init": "node dist/index --init",
"prepare": "husky install"
},
"keywords": [
"angular",
"unused",
"css",
"detect",
"find"
],
"author": "Ivan Blazevic",
"license": "ISC",
"dependencies": {
"chalk": "4.0.0",
"jsdom": "19.0.0",
"meow": "9.0.0",
"purgecss": "4.0.3",
"prompts": "2.4.2",
"sass": "1.48.0",
"table": "6.8.0"
},
"bin": {
"ngx-unused-css": "./dist/index.js"
},
"bugs": "https://github.com/ivanblazevic/ngx-unused-css/issues",
"homepage": "https://github.com/ivanblazevic/ngx-unused-css",
"repository": {
"type": "git",
"url": "https://github.com/ivanblazevic/ngx-unused-css"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/jsdom": "^16.2.14",
"@types/mock-fs": "^4.13.1",
"@types/node": "17.0.8",
"@types/prompts": "^2.0.14",
"@types/sass": "^1.43.1",
"@types/table": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.2.0",
"jest": "27.4.7",
"mock-fs": "^4.14.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "27.1.3",
"ts-node": "^8.10.2",
"tslib": "2.3.1",
"typescript": "4.5.4"
}
}