This repository has been archived by the owner on May 3, 2022. It is now read-only.
forked from mrmckeb/typescript-plugin-css-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.62 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
{
"name": "@pandell/typescript-plugin-css-modules",
"version": "2.0.0",
"main": "lib/index.js",
"author": "Brody McKee <mrmckeb@hotmail.com>",
"contributors": [
"John Gozde <john@gozde.ca>"
],
"license": "MIT",
"description": "CSS modules support for TypeScript",
"homepage": "https://github.com/pandell/typescript-plugin-css-modules",
"repository": {
"type": "git",
"url": "https://github.com/pandell/typescript-plugin-css-modules"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"css",
"modules",
"plugin",
"postcss",
"typescript"
],
"files": [
"lib"
],
"scripts": {
"build": "rm -rf ./lib && tsc",
"prepublishOnly": "yarn build",
"test": "jest ./src"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "yarn test"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts}"
],
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"icss-utils": "^4.1.0",
"lodash.camelcase": "^4.3.0",
"postcss": "^7.0.16",
"postcss-icss-selectors": "^2.0.3",
"reserved-words": "^0.1.2"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/lodash.camelcase": "^4.3.3",
"@types/node": "^10.0.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"typescript": "^3.0.0"
}
}