-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 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
50
{
"name": "expo-sqlite-wrapper",
"version": "1.4.4",
"description": "This is an ORM, build around expo-sqlite. It will make operation like UPDATE,SELECT AND INSERT a lot easier to handle",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "mocha dist/tests/test.js",
"testNew": "mocha dist/tests/QuerySelectorTest.js",
"dev": "npm run build & npm run test",
"devNew": "npm run build & npm run testNew"
},
"keywords": [
"sql",
"sqlite",
"websql",
"expo.websql",
"web sqlite",
"ios sqlite",
"android sqlite",
"expo-sqlite",
"orm",
"react-native",
"expo",
"expo-sqlite-wrapper"
],
"repository": "https://github.com/AlenToma/expo-sqlite-wrapper",
"author": "Alen Toma <alen.toma@gmail.com> (https://github.com/AlenToma)",
"bugs": {
"url": "https://github.com/AlenToma/expo-sqlite-wrapper/issues"
},
"homepage": "https://github.com/AlenToma/expo-sqlite-wrapper#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"dependencies": {
"crypto-js": "*",
"expo-sqlite": "*",
"json-sql": "*",
"react": "*"
},
"devDependencies": {
"@types/node": "*",
"@types/react": "*",
"mocha": "*",
"should": "*",
"typescript": "^4.9.5"
}
}