-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "@tarojs/plugin-migrate",
"version": "0.0.2",
"description": "Taro 快速升级迁移插件",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run prod",
"dev": "tsc -w",
"prod": "tsc",
"clean": "rimraf dist",
"test": "jest",
"test:dev": "jest --watch"
},
"files": [
"src",
"dist",
"index.js",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/plugin-migrate.git"
},
"keywords": [
"Taro"
],
"author": "luckyadam",
"license": "MIT",
"bugs": {
"url": "https://github.com/NervJS/plugin-migrate/issues"
},
"homepage": "https://github.com/NervJS/plugin-migrate#readme",
"devDependencies": {
"@types/node": "^14.0.5",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"dependencies": {
"@babel/parser": "7.10.2",
"@babel/traverse": "7.10.1",
"@babel/types": "7.10.2",
"ejs": "3.1.3",
"lodash": "^4.17.15",
"ora": "^4.0.4"
}
}