-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
{
"name": "tortoisedb",
"version": "1.0.8",
"main": "dist/tortoiseDB.min.js",
"license": "MIT",
"description": "A simple Node server and mongoDB wrapper for clients to sync to when using turtleDB.",
"homepage": "https://turtle-db.github.io/",
"repository": {
"type": "git",
"url": "https://github.com/turtle-DB/tortoiseDB.git"
},
"keywords": [
"indexeddb",
"offline-first",
"document",
"database",
"JSON",
"versioning"
],
"contributors": [
{
"name": "Andrew Houston-Floyd",
"email": "andrew.houstonfloyd@gmail.com",
"url": "https://turtle-db.github.io/"
},
{
"name": "Steven Shen",
"email": "steeve.shen@gmail.com",
"url": "https://rockdinosaur.github.io/"
},
{
"name": "Max Appleton",
"email": "maxiappleton@gmail.com",
"url": "https://maxiappleton.github.io/"
}
],
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "nodemon index.js",
"debug": "DEBUG=tortoiseDB:* node index.js"
},
"unpkg": "dist/tortoiseDB.min.js",
"dependencies": {
"debug": "^3.1.0",
"express": "^4.16.3",
"mongodb": "^3.1.1",
"supports-color": "^5.4.0"
},
"devDependencies": {
"nodemon": "^1.18.3",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
}
}