-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "sqlite-js-wrapper",
"version": "1.3.0",
"description": "Tiny SQLite helper library (query builder) built on top of HTML5/Web SQL (DRAFT) API",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"@babel/core": "^7.5.0",
"@babel/runtime": "^7.5.1",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skuzoluk/sqlite-js-wrapper.git",
"homepage": "https://github.com/skuzoluk/sqlite-js-wrapper#readme"
},
"keywords": [
"sqlite",
"js",
"wrapper",
"helper",
"sqlite3",
"javascript",
"storage",
"react",
"native",
"database",
"cordova"
],
"author": "Seçkin KUZOLUK",
"license": "MIT",
"bugs": {
"url": "https://github.com/skuzoluk/sqlite-js-wrapper/issues"
},
"homepage": "https://github.com/skuzoluk/sqlite-js-wrapper#readme"
}