-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 KB
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
{
"name": "sfdatabase-js",
"version": "2.0.0-alpha-1",
"description": "SFDatabase-js is a database library that can help you build a SQL Query and execute it to the server from Nodejs or local browser with WebSQL. It will fallback to IndexedDB or LocalStorage for saving the database if running on browser.",
"repository": {
"type": "git",
"url": "https://github.com/ScarletsFiction/SFDatabase-js.git"
},
"author": "ScarletsFiction",
"license": "MIT",
"bugs": {
"url": "https://github.com/ScarletsFiction/SFDatabase-js/issues"
},
"main": "dist/sfdatabase.node.js",
"browserslist": [
"Android > 4",
"IOS >= 7",
"last 2 versions",
"ie >= 11"
],
"scripts": {
"start": "gulp serve",
"build-prod": "gulp default"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"browser-sync": "^2.27.9",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-header": "^2.0.9",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0"
},
"keywords": [
"mysql",
"database",
"client",
"browser",
"websql",
"indexeddb"
],
"dependencies": {
"fake-indexeddb": "^3.1.7"
}
}