-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.98 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
{
"name": "vuejs-dynamic-component",
"version": "3.2.10",
"description": "Make components dynamically in Vue, It is suitable for encapsulating your own non-ermanent components such as dialog and toast.",
"repository": {
"type": "git",
"url": "git+https://github.com/dylan237/vuejs-dynamic-component.git"
},
"source": "src/index.ts",
"main": "dist/index.js",
"exports": "./dist/index.modern.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "microbundle watch",
"build": "microbundle",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src",
"commit": "git add . && git-cz",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push --follow-tags",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"files": [
"dist/**"
],
"keywords": [
"vue",
"dynamic-component",
"dialog"
],
"author": "dylan237 <dylan.liu237@gmail.com>",
"license": "MIT",
"dependencies": {
"vue": "^2.6.12",
"vuejs-dynamic-component": "^3.2.5"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@ls-lint/ls-lint": "^1.9.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"husky": "7.0.1",
"lint-staged": "^11.0.0",
"microbundle": "^0.13.0",
"prettier": "^2.3.0"
}
}