This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
94 lines (94 loc) · 2.81 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
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
93
94
{
"name": "miniprogram-build",
"version": "8.0.0.beta.1",
"description": "A command line tool to build & watch MiniProgram.",
"keywords": [
"MiniProgram",
"build",
"typescript",
"wechat",
"scss",
"tools",
"gulp",
"npm",
"framework",
"小程序",
"微信"
],
"main": "src/task.js",
"bin": {
"miniprogram-build": "bin/mp-build.js",
"mp-build": "bin/mp-build.js",
"mp": "bin/mp-build.js"
},
"engines": {
"node": ">=10"
},
"files": [
"src/",
"vendor/",
"bin/"
],
"scripts": {
"version": "conventional-changelog -r 0 -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push --follow-tags -q",
"test:empty": "cd test-empty && node ../bin/mp-build.js build && node ../bin/mp-build.js compile --release",
"test:empty-ts": "cd test-ts && node ../bin/mp-build.js build && node ../bin/mp-build.js compile --release",
"test:full": "npm test --prefix=test",
"test": "npm run test:empty && npm run test:full && npm run test:empty-ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewFuture/miniprogram-build.git"
},
"author": {
"name": "NewFuture",
"email": "npm@newfuture.cc",
"url": "https://newfuture.cc"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/NewFuture/miniprogram-build/issues"
},
"homepage": "https://github.com/NewFuture/miniprogram-build#readme",
"dependencies": {
"ansi-colors": "^4.1.3",
"gulp": "^4.0.2",
"gulp-better-rollup": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"imagemin": "^7.0.1",
"json5": "^2.2.1",
"mime": "^2.4.6",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"sass": "^1.54.8",
"through2": "^4.0.2",
"ts-transform-paths": "^2.0.3",
"wechat-devtool": "^2.0.0",
"yargs": "~15.3.1"
},
"optionalDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.0",
"@rollup/plugin-typescript": "^2.1.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^8.0.0"
},
"peerDependencies": {
"tslib": ">=1.7",
"typescript": ">=2.7.1"
},
"devDependencies": {
"@types/gulp": "^4.0.6",
"@types/rimraf": "^3.0.0",
"conventional-changelog-cli": "^2.1.0",
"tslib": "^2.0.0",
"typescript": "^4.0.2"
}
}