-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@saeris/vue-keyrune",
"version": "1.0.5",
"description": "A simple Vue component wrapper around Keyrune",
"author": "Drake Costa <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"keyrune",
"magic the gathering"
],
"main": "./lib/@saeris/vue-keyrune.common.js",
"unpkg": "./lib/@saeris/vue-keyrune.umd.min.js",
"repository": {
"type": "git",
"url": "https://github.com/Saeris/vue-keyrune"
},
"bugs": {
"url": "https://github.com/saeris/vue-keyrune/issues"
},
"homepage": "https://github.com/saeris/vue-keyrune",
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"build": "yarn build:demo && yarn build:lib",
"test": "yarn lint && vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"start": "vue-cli-service serve ./demo/src/main.js",
"release": "yarn publish --access public",
"build:demo": "vue-cli-service build --dest ./demo/dist --modern --target app --name demo ./demo/src/main.js",
"build:lib": "vue-cli-service build --dest lib --target lib ./src/index.js",
"test:coverage": "yarn test --coverage && codecov",
"precommit": "lint-staged",
"prepublish": "snyk protect",
"prepublishOnly": "yarn test && yarn build:lib",
"test:watch": "yarn test --watch"
},
"peerDependencies": {
"keyrune": "^3.3.0",
"vue": "^2.5.17"
},
"devDependencies": {
"@vue/cli": "^3.0.1",
"@vue/cli-plugin-babel": "3.0.5",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-pwa": "^3.0.1",
"@vue/cli-plugin-unit-jest": "3.0.5",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-prettier": "^3.0.5",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"codecov": "^3.1.0",
"emotion": "^9.2.12",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-promise": "^4.0.1",
"favicons-webpack-plugin": "^0.0.9",
"focus-trap": "^3.0.0",
"keyrune": "latest",
"lint-staged": "^7.2.2",
"node-sass": "^4.9.0",
"register-service-worker": "^1.0.0",
"sass-loader": "^7.0.1",
"snyk": "^1.103.0",
"vue": "^2.5.17",
"vue-class-component": "^6.2.0",
"vue-emotion": "^0.4.2",
"vue-template-compiler": "^2.5.17"
},
"files": [
"lib/*",
"src/*",
"*.json",
"*.js"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"snyk": true
}