-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@tarojs/cli-convertor",
"version": "3.6.32",
"description": "cli tool for taro-convert",
"main": "index.js",
"scripts": {
"build": "pnpm run clean && pnpm run prod",
"dev": "tsc -w",
"prod": "tsc",
"clean": "rimraf dist",
"lint": "eslint src --ext .js --ext .jsx --ext .ts --ext .tsx",
"format": "prettier --write \"{src, __tests__}/**/*.{ts,tsx,js,jsx}\" && eslint src __tests__ --ext .js --ext .jsx --ext .ts --ext .tsx --fix",
"test": "jest",
"test:clear": "jest --clearCache",
"test:cov": "jest --coverage",
"test:updateSnapshot": "jest --updateSnapshot",
"test:ci": "cross-env NODE_ENV=test jest --ci -i --coverage --silent"
},
"files": [
"bin",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro.git"
},
"bin": {
"taro-convert": "bin/taro-convert"
},
"keywords": [
"taro",
"weapp"
],
"engines": {
"node": ">=12"
},
"jest": {
"testEnvironment": "node",
"testEnvironmentOptions": {},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/taro-cli-convertor/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"node_modules",
"/__tests__/util.ts",
"/__mocks__/",
"/data/"
],
"coveragePathIgnorePatterns": [
"/__tests__/*"
],
"transformIgnorePatterns": [
"@taro-helper/node_modules/"
]
},
"author": "O2Team",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.20.0",
"@babel/template": "^7.20.0",
"@babel/traverse": "^7.20.0",
"@babel/types": "^7.20.0",
"@tarojs/binding": "workspace:*",
"@tarojs/cli": "workspace:*",
"@tarojs/helper": "workspace:*",
"@tarojs/shared": "workspace:*",
"@tarojs/taroize": "workspace:*",
"@tarojs/transformer-wx": "workspace:*",
"postcss": "^8.4.18",
"postcss-taro-unit-transform": "workspace:*",
"prettier": "^2.7.1",
"fs-extra": "^8.0.1"
},
"devDependencies": {
"@babel/parser": "^7.14.5",
"@tarojs/taro": "workspace:*",
"jest": "^29.7.0",
"jest-cli": "^29.3.1",
"jest-environment-node": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^4.7.4"
}
}