-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 993 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 993 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
{
"name": "miniprogram-elder-transform",
"version": "0.0.4",
"description": "miniprogram transformer for elder",
"main": "index.js",
"bin": {
"miniprogram-elder-transform": "bin.js"
},
"engines": {
"node": ">= 12"
},
"scripts": {
"build": "babel src --extensions '.js,.ts' --out-dir dist --ignore **/__tests__ --verbose",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:wechat-miniprogram/miniprogram-elder-transform.git"
},
"author": "chyizheng",
"license": "ISC",
"dependencies": {
"fast-glob": "^3.2.7",
"postcss": "^8.3.5",
"postcss-selector-parser": "^6.0.6",
"postcss-value-parser": "^4.1.0",
"source-map": "^0.7.3",
"yargs": "^17.1.1"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/preset-typescript": "^7.14.5"
}
}