forked from Jimdo/typings-for-css-modules-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.86 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
{
"name": "typings-for-css-modules-loader",
"version": "1.7.0",
"description": "Drop-in replacement for css-loader to generate typings for your CSS-Modules on the fly in webpack",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"prepublish": "npm run build",
"pretest": "rm -f ./test/example*.css.d.ts",
"test:diff": "(cd test; set -e; for f in example*css.d.ts; do diff $f expected-$f; done;)",
"test:run": "babel-node ./node_modules/webpack/bin/webpack --config ./test/webpack.config.babel.js",
"test:run-twice": "npm run test:run > /dev/null 2>&1 && npm run test:run",
"test": "npm run test:run-twice && npm run test:diff"
},
"author": "Tim Sebastian <tim.sebastian@gmail.com>",
"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": {
"colour": "0.7.1",
"graceful-fs": "4.1.4",
"loader-utils": "0.2.16"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "~6.21.0",
"babel-eslint": "6.1.0",
"babel-loader": "~6.2.5",
"babel-polyfill": "~6.13.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-0": "6.5.0",
"css-loader": "~0.26.1",
"eslint": "2.13.1",
"eslint-plugin-babel": "3.3.0",
"ts-loader": "~0.8.2",
"typescript": "~1.8.10",
"webpack": "~1.13.2"
},
"peerDependencies": {
"css-loader": ">=0.23.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jimdo/typings-for-css-modules-loader.git"
},
"bugs": {
"url": "https://github.com/Jimdo/typings-for-css-modules-loader/issues"
},
"homepage": "https://github.com/Jimdo/typings-for-css-modules-loader#readme"
}