-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.15 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
{
"name": "vue-data-proxy",
"version": "1.0.4",
"description": "Easily create deep object proxy (mainly to map a Vuex nested sub-state to a computed property)",
"keywords": [
"Vue",
"Vuex",
"bind",
"binding",
"mapstate",
"proxy",
"data"
],
"homepage": "https://github.com/hl037/vue-data-proxy",
"bugs": "https://github.com/hl037/vue-data-proxy/issues",
"license": "MIT",
"author": {
"name": "Léo Flaventin Hauchecorne",
"email": "[email protected]",
"url": "http://leo-flaventin.com"
},
"main": "dist/vue-data-proxy.umd.js",
"module": "dist/vue-data-proxy.esm.js",
"unpkg": "dist/vue-data-proxy.min.js",
"scripts": {
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-data-proxy.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-data-proxy.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-data-proxy.min.js"
},
"devDependencies": {
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2"
}
}