-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 863 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 863 Bytes
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
{
"name": "react-native-sqlite-orm",
"version": "1.0.0",
"description": "Rails-style sqlite ORM for React Native",
"main": "src/index.js",
"author": "Maksim Hardziyenak <maxim@gordienok.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/maxig/react-native-sqlite-orm.git"
},
"keywords": [
"sqlite",
"react-native",
"orm"
],
"scripts": {
"test": "jest"
},
"files": [
"src/"
],
"devDependencies": {
"@types/jest": "^23.3.2",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.6.0",
"eslint-plugin-jest": "^21.22.0",
"jest": "^23.6.0"
},
"bugs": {
"url": "https://github.com/maxig/react-native-sqlite-orm/issues"
},
"homepage": "https://github.com/maxig/react-native-sqlite-orm#readme"
}