forked from skovy/typed-scss-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.58 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
{
"name": "typed-scss-modules",
"version": "0.0.0",
"description": "TypeScript type definition generator for SCSS CSS Modules",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"author": "Spencer Miskoviak <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/skovy/typed-scss-modules.git"
},
"homepage": "https://github.com/skovy/typed-scss-modules.git#readme",
"keywords": [
"scss",
"css modules",
"cli",
"typescript",
"type generator",
"scss modules"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"typed-scss-modules": "ts-node ./lib/cli.ts",
"clean": "rm -rf ./dist",
"build": "yarn clean && tsc && chmod +x dist/lib/cli.js",
"prepare": "yarn build && husky install",
"check-types": "tsc --noEmit",
"check-formatting": "prettier --check '**/*.{js,json,css,md,scss,tsx,ts}'",
"commit": "commit"
},
"files": [
"dist/lib"
],
"bin": {
"typed-scss-modules": "./dist/lib/cli.js"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/prompt-cli": "^16.2.1",
"@commitlint/travis-cli": "^16.2.1",
"@types/css-modules-loader-core": "^1.1.0",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/node-sass": "^4.11.2",
"@types/prettier": "^2.4.4",
"@types/reserved-words": "^0.1.0",
"@types/sass": "^1.16.0",
"@types/yargs": "^17.0.8",
"babel-jest": "^27.5.1",
"babel-plugin-transform-import-meta": "^2.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"node-sass-json-importer": "^4.3.0",
"prettier": "^2.5.1",
"sass": "^1.49.7",
"semantic-release": "^17.4.7",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"node-sass": "^4.12.0",
"sass": "^1.49.7"
},
"peerDependenciesMeta": {
"node-sass": {
"optional": true
},
"sass": {
"optional": true
}
},
"dependencies": {
"bundle-require": "^3.0.4",
"chalk": "4.1.2",
"change-case": "^4.1.2",
"chokidar": "^3.5.3",
"css-modules-loader-core": "^1.1.0",
"esbuild": "^0.14.21",
"glob": "^7.2.0",
"joycon": "^3.1.1",
"reserved-words": "^0.1.2",
"slash": "^3.0.0",
"yargs": "^17.3.1"
},
"lint-staged": {
"*.{js,json,css,md,scss,tsx,ts}": [
"prettier --write"
]
}
}