-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "vue-create-root",
"version": "0.0.5",
"description": "命令式调用组件(<1k), 如this.$createRoot(uComponent).",
"unpkg": "dist/vue-create-root.umd.js",
"jsdelivr": "dist/vue-create-root.umd.js",
"main": "dist/vue-create-root.common.js",
"module": "dist/vue-create-root.es.js",
"browser": "dist/vue-create-root.umd.js",
"types": "lib/main.d.ts",
"files": [
"src",
"lib",
"dist"
],
"scripts": {
"dev": "rollup -c --watch",
"build": "node ./scripts/build.js",
"test": "jest",
"release:demo": "node ./scripts/demo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/any86/vue-create-root.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/any86/vue-create-root/issues"
},
"homepage": "https://github.com/any86/vue-create-root#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"gh-pages": "^2.0.1",
"jest": "^24.8.0",
"rollup": "^1.14.6",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^24.0.2",
"tslib": "^1.9.3",
"typescript": "^3.5.1",
"vue": "^2.6.10"
},
"dependencies": {
"chalk": "^2.4.2",
"shelljs": "^0.8.3"
}
}