-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
{
"name": "typescript-plugin-css-module-types",
"description": "CSS modules (based on scss) support for TypeScript",
"version": "0.1.1",
"author": "GodLesZ <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/GodLesZ/typescript-plugin-css-module-types/issues",
"homepage": "https://github.com/GodLesZ/typescript-plugin-css-module-types",
"repository": "https://github.com/GodLesZ/typescript-plugin-css-module-types",
"keywords": [
"css",
"scss",
"sass",
"modules",
"plugin",
"typescript"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"tslint": "tslint --config tslint.json --project tsconfig.json \"./src/**/*.ts\"",
"tscheck": "tsc --noEmit --project ./tsconfig.json",
"prebuild": "rm -rf ./build",
"build": "tsc --project ./tsconfig.json",
"prebuild:watch": "rm -rf ./build",
"build:watch": "tsc --watch",
"prepublishOnly": "yarn build",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npx tslint --project . --fix",
"pre-push": "yarn test"
}
},
"dependencies": {
"icss-utils": "^4.1.0",
"lodash": "^4.17.11",
"node-sass": "^4.12.0",
"postcss": "^7.0.17",
"postcss-icss-selectors": "^2.0.3",
"reserved-words": "^0.1.2"
},
"devDependencies": {
"@types/icss-utils": "^4.1.0",
"@types/jest": "^25.2",
"@types/lodash": "^4.14.132",
"@types/node": "^12.6.2",
"@types/node-sass": "^4.11.0",
"husky": "^3.0.0",
"jest": "^25.4",
"metro-memory-fs": "^0.55.0",
"ts-jest": "^25.4",
"tslint": "^5.20",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.4.5"
}
}