-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.22 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
{
"name": "v-localforage",
"version": "0.0.0-development",
"private": false,
"description": "A plugin wrapped from localForage for Vue.js.",
"keywords": [
"localforage",
"storage",
"storagejs",
"vue",
"vuejs"
],
"homepage": "https://github.com/ricardogobbosouza/v-localforage",
"bugs": {
"url": "https://github.com/ricardogobbosouza/v-localforage/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ricardogobbosouza/v-localforage.git"
},
"license": "MIT",
"author": {
"name": "Ricardo Gobbo de Souza",
"email": "[email protected]",
"role": "Developer"
},
"files": [
"dist"
],
"main": "dist/v-localforage.cjs.js",
"module": "dist/v-localforage.esm.js",
"browser": "dist/v-localforage.umd.js",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"commit": "commit",
"precoverage": "rimraf coverage/",
"coverage": "jest --coverage",
"lint": "eslint src/ test/",
"prebuild": "rimraf dist/",
"report-coverage": "codecov",
"pretest": "npm run lint",
"test": "npm run coverage",
"posttest": "npm run build",
"watch": "jest --watchAll"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"localforage": "^1.7.3"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@commitlint/prompt-cli": "latest",
"@datalogix/eslint-config": "latest",
"@vue/test-utils": "latest",
"babel-jest": "latest",
"codecov": "latest",
"cross-env": "latest",
"eslint": "latest",
"eslint-plugin-jest": "latest",
"husky": "latest",
"jest": "latest",
"rimraf": "latest",
"rollup": "latest",
"rollup-plugin-buble": "latest",
"rollup-plugin-commonjs": "latest",
"rollup-plugin-node-resolve": "latest",
"rollup-plugin-uglify": "latest",
"vue": "latest",
"vue-template-compiler": "latest"
},
"peerDependencies": {
"vue": "^2.x"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
}
}