-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 813 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 813 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
{
"name": "wxml-minifier",
"version": "0.0.7",
"description": "微信小程序WXML压缩工具",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist",
"test": "jest && jest-coverage-badges"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeeJim/wxml-minifier.git"
},
"keywords": [
"minifier",
"wxml",
"微信小程序",
"miniprogram",
"wechat"
],
"author": "leejimqiu",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeeJim/wxml-minifier/issues"
},
"homepage": "https://github.com/LeeJim/wxml-minifier#readme",
"dependencies": {
"@leejim/wxml-parser": "^0.2.0"
},
"devDependencies": {
"@vercel/ncc": "^0.33.1",
"jest": "^27.4.7",
"jest-coverage-badges": "^1.1.2"
}
}