-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.06 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
{
"name": "@midwayjs/bundle-helper",
"version": "1.3.0",
"description": "generate midway bundle entry file",
"main": "dist/index.js",
"bin": {
"bundle": "bin/bundle.js"
},
"keywords": [
"midway",
"bundle",
"entry",
"generator"
],
"files": [
"bin",
"dist/**/*.js",
"dist/**/*.d.ts"
],
"dependencies": {},
"devDependencies": {
"@midwayjs/core": "^3.2.0",
"@midwayjs/decorator": "^3.1.6",
"@midwayjs/glob": "^1.0.6",
"@types/jest": "^27.4.1",
"@types/node": "17.0.23",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"mwts": "^1.3.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"sequelize-typescript": "^2.1.5"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "jest",
"cov": "jest --coverage",
"lint": "mwts check",
"lint:fix": "mwts fix",
"ci": "npm run cov",
"build": "rm -rf dist & tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/midwayjs/bundle-helper"
},
"author": "[email protected]",
"license": "MIT"
}