-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.63 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-esc",
"version": "3.0.1",
"description": ":running: Vue.js directive to add a document event listener on escape keyup.",
"main": "dist/vue-esc.min.js",
"author": "Ignacio Anaya <[email protected]>",
"repository": "ianaya89/vue-esc",
"keywords": [
"vue-esc",
"vue",
"directive",
"escape"
],
"license": "MIT",
"scripts": {
"build": "webpack --mode=production --progress --colors -p",
"build:dev": "webpack --mode=development --progress --colors",
"dev": "webpack --mode=development --progress --colors --watch",
"test": "jest --coverage",
"cover": "open coverage/lcov-report/index.html",
"eslint": "eslint . --ext .js",
"eslint:fix": "eslint . --fix .js",
"prepublish": "npm run build && npm run build:dev"
},
"devDependencies": {
"@babel/core": "7.3.3",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"@babel/preset-env": "7.3.1",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0",
"pre-commit": "^1.2.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"pre-commit": [
"eslint"
],
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
},
"collectCoverageFrom": [
"src/**"
],
"roots": [
"test/"
]
},
"engines": {
"node": ">= 6"
}
}