forked from skovy/typed-scss-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.5 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
{
"name": "@Nickhoyer/typed-scss-modules",
"version": "0.0.0",
"description": "TypeScript type definition generator for SCSS CSS Modules",
"main": "index.js",
"author": "Spencer Miskoviak <smiskoviak@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Nickhoyer/typed-scss-modules.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"homepage": "https://github.com/skovy/typed-scss-modules.git#readme",
"keywords": [
"scss",
"css modules",
"cli",
"typescript",
"type generator",
"scss modules"
],
"scripts": {
"test": "jest",
"tsm": "ts-node ./lib/cli.ts",
"clean": "rm -rf ./dist",
"build": "yarn clean && tsc && chmod +x dist/lib/cli.js",
"prepare": "yarn build",
"check-types": "tsc --noEmit",
"check-formatting": "prettier --check '**/*.{js,json,css,md,scss,tsx,ts}'",
"commit": "commit"
},
"files": [
"dist/lib"
],
"bin": {
"tsm": "./dist/lib/cli.js"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@commitlint/prompt-cli": "^9.1.2",
"@commitlint/travis-cli": "^9.1.2",
"@types/camelcase": "^4.1.0",
"@types/css-modules-loader-core": "^1.1.0",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.0",
"@types/node-sass": "^3.10.32",
"@types/param-case": "^1.1.2",
"@types/prettier": "^2.1.0",
"@types/reserved-words": "^0.1.0",
"@types/sass": "^1.16.0",
"@types/yargs": "^12.0.8",
"husky": "^1.3.1",
"jest": "23.6.0",
"lint-staged": "^8.1.3",
"node-sass": "^6.0.1",
"prettier": "^2.1.2",
"sass": "^1.25.0",
"semantic-release": "^17.1.1",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.2",
"typescript": "^3.3.3"
},
"peerDependencies": {
"node-sass": "^6.0.1",
"sass": "^1.25.0"
},
"peerDependenciesMeta": {
"node-sass": {
"optional": true
},
"sass": {
"optional": true
}
},
"dependencies": {
"camelcase": "^5.0.0",
"chalk": "^3.0.0",
"chokidar": "^3.3.0",
"css-modules-loader-core": "^1.1.0",
"glob": "^7.1.6",
"param-case": "^3.0.2",
"path": "^0.12.7",
"reserved-words": "^0.1.2",
"slash": "^3.0.0",
"yargs": "^15.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,scss,tsx,ts}": [
"prettier --write",
"git add"
]
}
}