-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "babel-plugin-codemod-react-css-modules",
"description": "Converts React components using imported CSS stylesheets to equivalent CSS Modules syntax.",
"version": "0.1.0-alpha.1",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"test": "npm run test:postcss && npm run test:codemod",
"test:postcss": "node -r ts-node/register src/postcss/__tests__/shell.ts",
"test:codemod": "node -r ts-node/register src/__tests__/codemod.ts"
},
"keywords": [
"babel-plugin",
"babel-codemod",
"babel-plugin-codemod"
],
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/traverse": "^7.2.3",
"@babel/types": "^7.3.0",
"@codemod/cli": "^2.1.3",
"@types/babel__core": "^7.0.4",
"@types/babel__template": "^7.0.1",
"@types/babel__traverse": "^7.0.5",
"@types/execa": "^0.9.0",
"@types/lodash": "^4.14.120",
"@types/node": "^10.12.18",
"classnames": "^2.2.6",
"execa": "^1.0.0",
"lodash": "^4.17.11",
"postcss": "^7.0.14",
"postcss-load-config": "^2.0.0",
"postcss-modules": "^1.4.1",
"postcss-scss": "^2.0.0",
"ts-node": "^8.0.2",
"typescript": "^3.2.4"
}
}