forked from hoodiehq/hoodie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.13 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "hoodie",
"version": "0.0.0-semantically-released",
"description": "A generic backend with a client API for Offline First applications",
"author": "The Hoodie Community",
"bin": {
"hoodie": "./bin/start.js"
},
"main": "server/index.js",
"bugs": {
"url": "https://github.com/hoodiehq/hoodie/issues"
},
"dependencies": {
"@hoodie/admin": "^1.0.1",
"@hoodie/client": "^10.0.0",
"@hoodie/server": "^23.0.0",
"async": "^2.0.0",
"browserify": "^14.0.0",
"good": "^7.0.2",
"good-squeeze": "^5.0.0",
"h2o2": "^6.0.0",
"hapi": "^16.4.2",
"hapi-cors-headers": "^1.0.0",
"inert": "^4.0.0",
"lodash": "^4.11.2",
"mkdirp": "^0.5.1",
"node-emoji": "^1.3.0",
"npmlog": "^4.0.0",
"pouchdb-adapter-fs": "^2.0.5",
"pouchdb-adapter-http": "^6.0.4",
"pouchdb-adapter-memory": "^6.0.4",
"pouchdb-browser": "^6.0.7",
"pouchdb-core": "^6.0.4",
"pouchdb-mapreduce": "^6.0.6",
"rc": "^1.1.6",
"semver": "^5.1.0",
"yargs": "^7.0.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"nock": "^9.0.0",
"proxyquire": "^1.7.4",
"request": "^2.72.0",
"semantic-release": "^7.0.1",
"simple-mock": "^0.8.0",
"standard": "^10.0.0",
"tap": "^10.0.0",
"textlint": "^9.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-rousseau": "^1.4.5",
"textlint-rule-no-dead-link": "^3.1.1"
},
"engines": {
"node": ">=4"
},
"files": [
"bin", "cli", "public", "server"
],
"homepage": "https://github.com/hoodiehq/hoodie#readme",
"keywords": [
"nobackend",
"offlinefirst"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/hoodie.git"
},
"scripts": {
"coverage": "tap --coverage-report=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "./bin/start.js",
"pretest": "standard",
"test": "tap --100 --jobs-auto './test/{unit,integration}/**/*-test.js'",
"postinstall": "node ./bin/setup.js",
"textlint": "textlint docs/**/*.md README.md"
}
}