-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.78 KB
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
{
"name": "@tuia/market-ui",
"version": "0.1.3",
"description": "丰富、可靠的移动端营销互动组件库",
"keywords": [
"tuia",
"vue",
"components"
],
"license": "ISC",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib"
],
"scripts": {
"serve": "concurrently --kill-others-on-fail \"npm:dev-*\"",
"dev-demo": "vue-cli-service serve",
"build": "mkui build",
"build:watch": "mkui build --watch",
"build-demo": "vue-cli-service build",
"lint": "vue-cli-service lint",
"commit": "git-cz",
"dev-doc": "vuepress dev docs --open",
"build-doc": "vuepress build docs",
"dev-build": "npm run build:watch",
"dev-copy": "NODE_ENV=development node plugins/fs-copy",
"build-copy": "NODE_ENV=production node plugins/fs-copy",
"create:new": "node plugins/create-new",
"precommit": "npm run prettier && npm run stylelint",
"commitlint": "npx commitlint -e $HUSKY_GIT_PARAMS",
"prettier": "npx prettier --write \"src/**/*.tsx\"",
"stylelint": "npx stylelint src/**/*.{css,less}",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "npx standard-version --no-verify -t release-",
"github-doc": "git push github master",
"beta": "npm publish --tag=beta"
},
"dependencies": {
"core-js": "^3.6.5",
"popmotion": "9.1.0"
},
"peerDependencies": {
"vue": ">= 2.5.22"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@tuia/mkui-cli": "^0.0.16",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"chokidar": "^3.5.1",
"commitizen": "^4.2.3",
"concurrently": "^6.0.2",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"fs-extra": "^9.1.0",
"husky": "^6.0.0",
"inquirer": "^8.1.1",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"prettier": "^2.2.1",
"standard-version": "^9.2.0",
"stylelint": "^13.13.0",
"stylelint-config-recess-order": "^2.4.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"ts-loader": "^8.1.0",
"typescript": "~4.1.5",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.8.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}