-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.32 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
94
{
"name": "vue-sqlite-hook",
"version": "3.0.3",
"description": "Vue Hook for @capacitor-community/sqlite",
"repository": {
"type": "git",
"url": "git+https://github.com/jepiqueau/vue-sqlite-hook.git"
},
"keywords": [
"Vue",
"Hook",
"Capacitor",
"Database",
"SQLite"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && npm run transpile && npm run copy-package",
"copy-package": "cp ./package.json ./dist/package.json",
"package": "npm pack ./dist",
"deploy": "npm run build && npm test && npx np",
"rollup": "rollup --config rollup.config.js",
"transpile": "tsc --module ES2015 --target es2017 --outDir dist",
"clean": "rimraf dist",
"build-old": "node scripts/build.js",
"docgen": "docgen --api SQLiteHook --output-readme docs/APIHook.md",
"test": "jest"
},
"peerDependencies": {
"@capacitor/core": ">=4.0.0",
"vue": ">=3.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@capacitor-community/sqlite": "^4.1.1",
"@capacitor/core": "^4.1.0",
"@capacitor/docgen": "0.0.17",
"@types/jest": "^27.4.1",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.2.37",
"eslint": "^8.10.0",
"eslint-plugin-vue": "^8.5.0",
"jest": "^27.5.1",
"replace": "^1.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.0.5",
"uglify-js": "^3.12.5",
"vue": "^3.4.30"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"jest": {
"preset": "ts-jest",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"testPathIgnorePatterns": [
"node_modules",
"dist-transpiled",
"dist",
"test-app"
],
"modulePaths": [
"<rootDir>"
]
},
"author": "Quéau Jean Pierre",
"license": "MIT",
"bugs": {
"url": "https://github.com/jepiqueau/vue-sqlite-hook/issues"
},
"homepage": "https://github.com/jepiqueau/vue-sqlite-hook#readme"
}