-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "vue-reactive-refs",
"version": "0.0.2",
"description": "Make $refs reactive so they can be used in computed properties and watchers",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.browser.esm.js",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"author": {
"name": "Eduardo San Martin Morote",
"email": "posva13@gmail.com"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"unit": "jest",
"test": "npm run build && npm run unit",
"prepublishOnly": "yarn run build"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"refs",
"vue",
"$refs",
"computed",
"watch",
"reactive"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"codecov": "^3.5.0",
"jest": "^25.1.0",
"rollup": "^2.1.0",
"rollup-plugin-alias": "^2.0.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^25.0.0",
"typescript": "^3.5.3",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-reactive-refs.git"
},
"bugs": {
"url": "https://github.com/posva/vue-reactive-refs/issues"
},
"homepage": "https://github.com/posva/vue-reactive-refs#readme"
}