forked from Quramy/typed-css-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.9 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
{
"name": "@abendi/typed-css-modules",
"version": "0.8.0",
"description": "Creates .d.ts files from CSS Modules .css files",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib/",
"build": "npm run clean && tsc && chmod +x lib/cli.js",
"prettier": "prettier \"*.{md,js,json.yml,yaml}\" \"{src,test}/**/*\"",
"format": "npm run prettier -- --write",
"lint": "npm run prettier -- --check",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage",
"prepublish": "npm run build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"bin": {
"tcm": "lib/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/abendi/typed-css-modules.git"
},
"keywords": [
"css-modules",
"typescript"
],
"author": "quramy",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@types/css-modules-loader-core": "^1.1.0",
"camelcase": "^6.0.0",
"chalk": "^4.0.0",
"chokidar": "^3.4.0",
"css-modules-loader-core": "^1.1.0",
"glob": "^7.1.2",
"is-there": "^4.4.2",
"mkdirp": "^1.0.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/glob": "7.1.4",
"@types/jest": "27.0.2",
"@types/mkdirp": "1.0.2",
"@types/node": "14.17.18",
"@types/yargs": "15.0.4",
"husky": "7.0.2",
"jest": "27.2.5",
"pinst": "2.1.6",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(test/.*|(src/.*\\.test))\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/",
"example/",
"coverage/"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}