-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.09 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
{
"name": "gatsby-transformer-typescript-css-modules",
"version": "1.0.14",
"description": "A gatsbyjs transformer plugin for using CSS/SCSS Modules and Typescript",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"version": "standard-version"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-transformer",
"typings-for-css-module-loader",
"css",
"typescript"
],
"author": "Robert Menke",
"repository": {
"type": "git",
"url": ""
},
"license": "ISC",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testEnvironment": "node",
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.spec.(ts|tsx)"
]
},
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/node": "^10.12.18",
"jest": "^23.6.0",
"typescript": "^3.2.2"
},
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
},
"dependencies": {
"typings-for-css-modules-loader": "^1.7.0"
}
}