-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.4 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
{
"name": "weimob-game",
"version": "0.0.1",
"description": "游戏框架",
"private": true,
"main": "lib/h5/wmgame.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"build:dev": "npm run clean && cross-env NODE_ENV=development rollup -c -w",
"build:prod": "npm run clean && cross-env NODE_ENV=production rollup -c",
"clean": "rimraf lib",
"lint": "eslint --fix ./ --ignore-path .eslintignore --ext .ts",
"merge": "git merge dev",
"publish:post": "git push --follow-tags && node build-changelog.js && npm publish && git branch -D dev && git checkout -b dev",
"publish:postBeta": "git push --follow-tags && node build-changelog.js && npm publish --tag beta&& git branch -D dev && git checkout -b dev",
"publish:patch": "npm run publish:pre && npm version patch && npm run publish:post",
"publish:major": "npm run publish:pre && npm version major && npm run publish:post",
"publish:minor": "npm run publish:pre && npm version minor && npm run publish:post",
"publish:beta": "npm run publish:pre && npm version prerelease --preid=beta && npm run publish:postBeta"
},
"repository": {
"type": "git",
"url": "https://github.com/weimob-tech/wmgame"
},
"keywords": [],
"author": "",
"license": "MIT",
"issues": {
"url": "https://github.com/weimob-tech/wmgame/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^26.0.23",
"@types/node": "^16.7.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.28.3",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"fs-extra": "^8.1.0",
"husky": "^4.3.0",
"jest": "^26.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.18.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"saas-fe-rprm-node": "^1.5.8",
"ts-jest": "^26.1.1",
"tslib": "^2.0.0",
"tslint": "^6.1.3",
"typescript": "4.8.4"
},
"dependencies": {
"commander": "^9.4.1"
}
}