-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
93 lines (93 loc) · 2.45 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-spinners",
"version": "1.0.8",
"description": "Vue port of React Spinners",
"license": "MIT",
"keywords": [
"loading spinners",
"loaders",
"spinners",
"loading indicators"
],
"main": "./lib/@saeris/vue-spinners.common.js",
"unpkg": "./lib/@saeris/vue-spinners.umd.min.js",
"repository": {
"type": "git",
"url": "https://github.com/Saeris/vue-spinners"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"start": "vue-cli-service serve ./example/src/main.js",
"build": "yarn build:demo && yarn build:lib",
"build:demo": "vue-cli-service build --dest ./example/dist --modern --target app --name demo ./example/src/main.js",
"build:lib": "vue-cli-service build --dest lib --target lib ./src/index.js",
"lint": "vue-cli-service lint",
"test": "yarn lint && vue-cli-service test:unit",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage && codecov",
"precommit": "lint-staged",
"prepublish": "snyk protect",
"prepublishOnly": "yarn test && yarn build:lib",
"release": "yarn publish --access public"
},
"peerDependencies": {
"emotion": "9.2.6",
"vue": "^2.5.2",
"vue-emotion": "0.4.2"
},
"devDependencies": {
"@vue/cli": "^3.0.1",
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-unit-jest": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@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": "^5.6.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-vue": "^4.7.1",
"jest": "^23.6.0",
"lint-staged": "^7.2.2",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"snyk": "^1.100.1",
"vue": "^2.5.2",
"vue-emotion": "0.4.2",
"vue-template-compiler": "^2.5.17"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"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"
]
}
}