-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "vue-string-directives",
"version": "0.1.0",
"description": "Vue string directives library can change form input value dynamically.",
"main": "dist/vue-string-directives.common.js",
"module": "dist/vue-string-directives.esm.js",
"unpkg": "dist/vue-string-directives.umd.min.js",
"jsdelivr": "dist/vue-string-directives.umd.min.js",
"keywords": [
"js",
"javascript",
"vue",
"vuejs",
"nuxt",
"nuxtjs",
"directive",
"string",
"form",
"input"
],
"scripts": {
"start": "rollup --config rollup.config.dev.js",
"dev": "rollup --config rollup.config.dev.js",
"build": "rollup --config rollup.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarkhov/vue-string-directives.git"
},
"author": "Alexander Tarkhov",
"license": "MIT",
"bugs": {
"url": "https://github.com/tarkhov/vue-string-directives/issues"
},
"homepage": "https://tarkhov.github.io/vue-string-directives/",
"dependencies": {
"vue": "^2.x"
},
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.26.11",
"rollup-plugin-terser": "^7.0.2"
}
}