-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
73 lines (73 loc) · 2.01 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
{
"name": "@teamsupercell/typings-for-css-modules-loader",
"version": "2.5.2",
"description": "Webpack loader that generates TypeScript typings for CSS modules from css-loader on the fly",
"main": "src/index.js",
"scripts": {
"test": "jest",
"release": "release-it"
},
"author": "Tim Sebastian <tim.sebastian@gmail.com>",
"license": "MIT",
"keywords": [
"Typescript",
"TypeScript",
"CSS Modules",
"CSSModules",
"CSS Modules typings",
"Webpack",
"Webpack loader",
"Webpack css module typings loader",
"typescript webpack typings",
"css modules webpack typings"
],
"dependencies": {
"camelcase": "^5.3.1",
"loader-utils": "^1.4.2",
"schema-utils": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"auto-changelog": "^2.2.1",
"css-loader": "*",
"css-loader3": "npm:css-loader@^3.1.0",
"eslint": "8.32.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"memfs": "^3.4.13",
"prettier": "*",
"release-it": "^15.6.0",
"typescript": "^4.9.4",
"webpack": "^5.75.0"
},
"optionalDependencies": {
"prettier": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamSupercell/typings-for-css-modules-loader.git"
},
"bugs": {
"url": "https://github.com/TeamSupercell/typings-for-css-modules-loader/issues"
},
"homepage": "https://github.com/TeamSupercell/typings-for-css-modules-loader#readme",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"extends": [
"prettier"
]
},
"release-it": {
"github": {
"release": true
},
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog --commit-limit false https://raw.githubusercontent.com/release-it/release-it/master/templates/keepachangelog.hbs"
}
}
}