-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 800 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 800 Bytes
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
{
"name": "@appworks/codemod",
"description": "AppWorks codemod scripts",
"version": "0.2.0",
"keywords": [
"appworks",
"codemod",
"rax-app",
"icejs"
],
"bin": {
"appworks-codemod": "bin/appworks-codemod"
},
"files": [
"bin/",
"src/",
"transforms/"
],
"main": "src/index.js",
"typings": "src/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint --ext .js,ts ./"
},
"dependencies": {
"@appworks/project-utils": "^0.1.0",
"ejs": "^3.1.6",
"execa": "^5.1.1",
"glob": "^7.1.7",
"jscodeshift": "^0.11.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@iceworks/spec": "^1.3.2",
"eslint": "^7.28.0",
"husky": "^6.0.0"
}
}