forked from mrmckeb/typescript-plugin-css-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.65 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "typescript-plugin-css-modules",
"version": "3.4.0",
"main": "lib/index.js",
"author": "Brody McKee <[email protected]>",
"license": "MIT",
"description": "CSS modules support for TypeScript",
"homepage": "https://github.com/mrmckeb/typescript-plugin-css-modules",
"repository": {
"type": "git",
"url": "https://github.com/mrmckeb/typescript-plugin-css-modules"
},
"keywords": [
"css",
"scss",
"sass",
"less",
"stylus",
"modules",
"plugin",
"postcss",
"typescript"
],
"files": [
"lib"
],
"scripts": {
"build": "rm -rf ./lib && tsc",
"lint": "eslint --max-warnings 0 . && yarn prettier -c .",
"prepublishOnly": "yarn build",
"test": "jest ./src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.{ts}"
],
"preset": "ts-jest",
"setupFiles": [
"<rootDir>/src/setup-tests.ts"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
]
},
"lint-staged": {
"./src/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"./**/*.{json,md,yml}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"resolutions": {
"postcss": "8.3.0"
},
"dependencies": {
"dotenv": "^10.0.0",
"icss-utils": "^5.1.0",
"less": "^4.1.1",
"lodash.camelcase": "^4.3.0",
"postcss": "^8.3.0",
"postcss-filter-plugins": "^3.0.1",
"postcss-icss-keyframes": "^0.2.1",
"postcss-icss-selectors": "^2.0.3",
"postcss-load-config": "^3.0.1",
"reserved-words": "^0.1.2",
"sass": "^1.32.13",
"stylus": "^0.54.8",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@types/icss-utils": "^4.1.0",
"@types/jest": "^26.0.23",
"@types/less": "^3.0.2",
"@types/lodash.camelcase": "^4.3.6",
"@types/node": "^12.12.17",
"@types/postcss-load-config": "^3.0.1",
"@types/postcss-nested": "^4.2.3",
"@types/reserved-words": "^0.1.0",
"@types/sass": "^1.16.0",
"@types/stylus": "^0.48.34",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"bootstrap": "5.0.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.2.5",
"jest": "^27.0.2",
"lint-staged": "^11.0.0",
"postcss-import-sync2": "^1.1.0",
"prettier": "^2.3.0",
"sass-svg": "1.2.0",
"ts-jest": "^27.0.1",
"typescript": "^4.3.2"
},
"peerDependencies": {
"typescript": ">=3.0.0"
}
}