-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
56
57
58
59
{
"name": "turtledb",
"version": "1.0.1",
"main": "dist/turtleDB.min.js",
"license": "MIT",
"description": "An offline-first JSON document database built using IndexedDB with out of the box versioning and sync.",
"homepage": "https://turtle-db.github.io/",
"repository": {
"type": "git",
"url": "https://github.com/turtle-DB/turtleDB.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"
},
"unpkg": "dist/turtleDB.min.js",
"dependencies": {
"debug": "^3.1.0",
"supports-color": "^5.4.0",
"axios": "^0.18.0",
"md5": "^2.2.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^2.5.1"
}
}