-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 913 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 913 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
{
"name": "bottender-codemod",
"version": "0.1.3",
"description": "Bottender codemod scripts",
"license": "MIT",
"repository": "bottenderjs/bottender-codemod",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepublishOnly": "npm run lint && npm run test",
"jscodeshift": "jscodeshift"
},
"keywords": [
"bottender",
"codemod",
"codeshift"
],
"dependencies": {
"jscodeshift": "^0.6.4",
"messaging-api-common": "^1.0.0-beta.5"
},
"jest": {
"testEnvironment": "node",
"roots": [
"transforms",
"bin"
]
},
"bin": {
"bottender-codemod": "./bin/bottender-codemod.js"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-yoctol-base": "^0.21.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"jest": "^24.9.0"
}
}