-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "css-loader-shorter-classnames",
"version": "2.0.1",
"description": "Provides short class name generator for css-loader with CSS Modules enabled",
"main": "index.js",
"files": [
"README.md",
"index.js",
"index.d.ts"
],
"types": "index.d.ts",
"scripts": {
"build": "npx tsc --project tsconfig.prod.json",
"build:clean": "run-s clean build",
"clean": "rimraf index.js index.d.ts",
"prepublishOnly": "run-s build:clean",
"test": "jest"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testRegex": "(\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unematiii/css-loader-short-classnames.git"
},
"keywords": [
"css",
"css-loader",
"css-modules",
"mini-css-extract-plugin",
"vue-cli"
],
"author": "Mati Kärner",
"license": "MIT",
"bugs": {
"url": "https://github.com/unematiii/css-loader-short-classnames/issues"
},
"homepage": "https://github.com/unematiii/css-loader-short-classnames#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}