-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 877 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 877 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
{
"name": "babel-plugin-transform-taroapi",
"version": "4.0.3-alpha.4",
"author": "O2Team",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prod": "pnpm run build",
"prebuild": "pnpm run clean",
"clean": "rimraf --impl=move-remove ./dist",
"build": "tsc",
"test": "cross-env NODE_ENV=jest jest",
"test:ci": "cross-env NODE_ENV=jest jest --ci -i --coverage --silent",
"test:dev": "cross-env NODE_ENV=jest jest --watch",
"test:coverage": "cross-env NODE_ENV=jest jest --coverage",
"updateSnapshot": "cross-env NODE_ENV=jest jest --updateSnapshot"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/types": "7.24.0",
"@types/babel__core": "7.20.5"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
}