forked from gahabeen/vue-formulate-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.88 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
{
"name": "vue-formulate-extended",
"version": "1.1.1",
"main": "lib/vue-formulate-extended.umd.js",
"module": "lib/vue-formulate-extended.esm.js",
"unpkg": "lib/vue-formulate-extended.min.js",
"author": "Gabin Desserprit <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "rollup -c --watch",
"example": "vue-cli-service serve --port=7872 example/main.js",
"example:build": "vue-cli-service build example/main.js",
"prepublish": "npm run build",
"build": "npm run build:esm & npm run build:umd & npm run build:iife",
"build:esm": "rollup --config build/rollup.config.js --format es --file lib/vue-formulate-extended.esm.js",
"build:umd": "rollup --config build/rollup.config.js --format umd --file lib/vue-formulate-extended.umd.js",
"build:iife": "rollup --config build/rollup.iife.config.js --format iife --file lib/vue-formulate-extended.min.js",
"test:unit": "vue-cli-service test:unit --coverage",
"test:unit:watch": "vue-cli-service test:unit --coverage --watch"
},
"peerDependencies": {
"@braid/vue-formulate": "2.5.2",
"imask": "^6.0.7",
"vue": "^2.6.12"
},
"devDependencies": {
"@braid/vue-formulate": "2.5.2",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-unit-jest": "~4.4.0",
"@vue/cli-service": "^4.4.6",
"@vue/test-utils": "^1.0.3",
"flush-promises": "^1.0.2",
"imask": "^6.0.7",
"node-sass": "^4.14.1",
"rollup": "^2.18.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-internal": "^1.0.4",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-vue": "^5.1.9",
"sass-loader": "^8.0.2",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"@vue/composition-api": "1.0.0-rc.8"
}
}