-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.53 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.53 KB
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
{
"name": "ember-codemod-css-modules",
"version": "1.0.0",
"description": "Codemod to replace ember-component-css with ember-css-modules (compatible with embroider-css-modules)",
"keywords": [
"codemod",
"css-modules",
"ember-codemod",
"ember-css-modules",
"emberjs",
"embroider-css-modules"
],
"repository": {
"type": "git",
"url": "https://github.com/simplepractice/ember-simplepractice.git"
},
"license": "MIT",
"author": "Dmitry Krasnoukhov",
"type": "module",
"main": "dist/src/index.js",
"bin": "dist/bin/ember-codemod-css-modules.js",
"directories": {
"test": "tests"
},
"files": [
"dist"
],
"scripts": {
"build": "./build.sh --production",
"lint:types": "tsc --noEmit",
"prepare": "yarn build",
"test": "./build.sh --test && mt dist-for-testing --quiet"
},
"dependencies": {
"@codemod-utils/ast-javascript": "^1.1.0",
"@codemod-utils/ast-template": "^0.3.1",
"@codemod-utils/blueprints": "^0.2.1",
"@codemod-utils/ember-cli-string": "^0.1.1",
"@codemod-utils/files": "^0.5.3",
"@codemod-utils/json": "^0.4.2",
"@tsconfig/ember": "^3.0.0",
"@tsconfig/node16": "^16.1.1",
"@tsconfig/strictest": "^2.0.2",
"postcss": "^8.4.29",
"postcss-scss": "^4.0.7",
"yargs": "^17.7.2"
},
"devDependencies": {
"@codemod-utils/tests": "^0.3.1",
"@sondr3/minitest": "^0.1.1",
"@types/node": "^16.18.47",
"@types/yargs": "^17.0.24",
"typescript": "^5.2.2"
},
"engines": {
"node": "16.* || >= 18"
}
}