-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "v-blur",
"version": "1.0.4",
"description": "Simple Vue directive to blur a specific element",
"author": "ndelvalle <[email protected]>",
"contributors": [
"Ignacio Anaya <[email protected]>"
],
"main": "dist/v-blur.min.js",
"scripts": {
"test": "jest --coverage",
"cover": "open coverage/lcov-report/index.html",
"build": "rollup -c",
"lint": "standard",
"lint:fix": "standard --fix",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndelvalle/v-blur.git"
},
"keywords": [
"vue"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ndelvalle/v-blur/issues"
},
"homepage": "https://github.com/ndelvalle/v-blur#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-jest": "^26.5.0",
"jest": "^26.6.3",
"np": "^7.0.0",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"standard": "^16.0.3"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
},
"collectCoverageFrom": [
"lib/**"
],
"roots": [
"test/"
]
},
"engines": {
"node": ">=6"
}
}