-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.35 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
{
"name": "@jupiterjs/jupiter-log",
"version": "0.0.5",
"description": "一个打印日志的类",
"main": "lib/main/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"build:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"dev": "npm run test && npm run build",
"test": "jest --no-cache",
"build:dev": "npm run clean && NODE_ENV=development rollup -c",
"build:prod": "npm run clean && NODE_ENV=production rollup -c",
"clean": "rm -rf lib",
"lint": "eslint --fix ./ --ignore-path .eslintignore --ext .ts",
"publish:pre": "npm run lint && git checkout master && git merge dev -m 'chore: Merge branch ”dev“' && npm run clean && npm run test && npm run build:prod",
"publish:post": "git push --follow-tags && node build-changelog.js && npm publish && git branch -D dev && git checkout -b dev",
"publish:patch": "npm run publish:pre && npm version patch -m 'chore: Upgrade to %s for reasons' && npm run publish:post",
"publish:major": "npm run publish:pre && npm version major -m 'chore: Upgrade to %s for reasons' && npm run publish:post",
"publish:minor": "npm run publish:pre && npm version minor -m 'chore: Upgrade to %s for reasons' && npm run publish:post"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"lib"
],
"keywords": [],
"author": "Zofer",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.28.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",
"husky": "^4.3.0",
"jest": "^26.1.0",
"lint-staged": "^11.0.1",
"mini-types": "^0.1.7",
"miniprogram-api-typings": "^3.3.2",
"miniprogram-simulate": "^1.4.0",
"rollup": "^2.18.1",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^26.1.1",
"tslib": "^2.0.0",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
}
}