-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
95 lines (95 loc) · 2.86 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "vuedl",
"version": "0.3.10",
"description": "Vue dialog helper",
"scripts": {
"build:copy": "npm run build && bash build/copy.sh",
"build": "npm run lint && npm run build:module && npm run build:browser",
"build:module": "bili --format cjs,es",
"build:browser": "bili --format umd,umd-min",
"lint": "eslint --ext js --ext vue src",
"lint:fix": "npm run lint -- --fix",
"prepublish": "npm run test && npm run build",
"release": "bash build/release.sh",
"test": "jest --env=jsdom ",
"coveralls": "jest --env=jsdom --coverage --coverageReporters=text-lcov | coveralls",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vuedl.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vuedl.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vuedl.min.js"
},
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.min.js",
"dependencies": {
"vue-asyncable": "^0.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yariksav/vuedl.git"
},
"keywords": [
"vue",
"dialog",
"modal"
],
"author": "Yaroslav Savaryn",
"license": "MIT",
"bugs": {
"url": "https://github.com/yariksav/vuedl/issues"
},
"homepage": "https://github.com/yariksav/vuedl#readme",
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.24",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"bili": "^4.8.1",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.1.2",
"jest": "^24.9.0",
"lodash": "^4.17.15",
"rollup": "^1.29.0",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-regenerator": "^0.6.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-uglify-es": "0.0.1",
"rollup-plugin-vue": "^5.1.5",
"vue": "^2.6.11",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11",
"vue-test-utils": "^1.0.0-beta.11"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js"
},
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
},
"peerDependencies": {
"vue": "*"
},
"eslintIgnore": [
"dist/"
]
}