-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 984 Bytes
/
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
{
"name": "vue-dynamic",
"version": "0.4.0",
"description": "Load stringified or normal Vue components dynamically!",
"repository": "git+https://github.com/JounQin/vue-dynamic.git",
"author": "JounQin <admin@1stg.me>",
"license": "MIT",
"main": "lib/cjs",
"module": "lib",
"es2015": "lib/es2015",
"fesm5": "lib/esm",
"jsdelivr": "lib/umd",
"unpkg": "lib/umd",
"types": "lib",
"files": [
"lib",
"!*.tsbuildinfo"
],
"keywords": [
"vue",
"dynamic",
"component",
"dynamic components"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -p",
"build:ts": "tsc -P .",
"lint": "run-p lint:*",
"lint:es": "cross-env PARSER_NO_WATCH=true eslint . --cache --ext js,md,ts -f friendly",
"lint:tsc": "tsc --noEmit"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@1stg/lib-config": "^0.5.1",
"npm-run-all": "^4.1.5",
"typescript": "^3.7.5",
"vue": "^2.6.11"
}
}