-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.35 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
{
"name": "@greyskullrocks/css-modules-ts-loader",
"version": "1.0.3",
"description": "Drop-in replacement for css-loader to generate typings for your CSS-Modules on the fly in webpack",
"main": "lib/index.js",
"private": false,
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "rm -rf lib && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts\" --source-maps inline --ignore **/*.spec.*",
"demo": "webpack --config ./demo/webpack.config.js --mode development",
"prepare": "npm run build && npm run test",
"test": "jest --coverage && codecov"
},
"author": "Hugo Nogueira <[email protected]>",
"license": "MIT",
"keywords": [
"Typescript",
"TypeScript",
"CSS Modules",
"CSSModules",
"CSS Modules typings",
"Webpack",
"Webpack loader",
"Webpack css module typings loader",
"typescript webpack typings",
"css modules webpack typings"
],
"dependencies": {
"loader-utils": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.5.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.15",
"@types/loader-utils": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"babel-jest": "^24.8.0",
"codecov": "^3.5.0",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-typescript": "^4.0.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.3",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greyskullrocks/css-modules-ts-loader.git"
},
"bugs": {
"url": "https://github.com/greyskullrocks/css-modules-ts-loader/issues"
},
"homepage": "https://github.com/greyskullrocks/css-modules-ts-loader#readme",
"directories": {
"lib": "lib"
},
"peerDependencies": {
"webpack": "4.x",
"css-loader": "3.x"
}
}