-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
{
"name": "vue-recomputed",
"version": "0.0.1",
"description": "Recomputable computed properties in Vue",
"sideEffects": false,
"main": "dist/vue-recomputed.cjs.js",
"module": "dist/vue-recomputed.es.js",
"unpkg": "dist/vue-recomputed.js",
"browser": "dist/vue-recomputed.es.js",
"author": {
"name": "Eduardo San Martin Morote",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint --color --ext=js,html src",
"unit": "jest",
"dev": "npm run unit -- --watchAll",
"test": "npm run lint && npm run unit",
"prepublishOnly": "rollit"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"keywords": [],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^26.0.1",
"codecov": "^3.5.0",
"eslint": "^7.0.0",
"eslint-config-posva": "^3.0.2",
"jest": "^26.0.1",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-recomputed.git"
},
"bugs": {
"url": "https://github.com/posva/vue-recomputed/issues"
},
"jest": {
"collectCoverage": true,
"testURL": "http://localhost",
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"coveragePathIgnorePatterns": [
"<rootDir>/src/*.spec.js",
"<rootDir>/test/.*.js",
"<rootDir>/test/*/*.js"
]
},
"homepage": "https://github.com/posva/vue-recomputed#readme"
}