-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "simple-odk",
"version": "3.0.1-dev",
"description": "A minimal ODK server for receiving form submissions from a mobile device and saving them as JSON on github",
"main": "app.js",
"engines": {
"node": "5.6.0"
},
"repository": {
"type": "git",
"url": "git://github.com/digidem/simple-odk.git"
},
"keywords": [
"odk",
"github"
],
"license": "MIT",
"dependencies": {
"basic-auth": "^1.0.3",
"cache-manager": "^0.19.0",
"charset": "^1.0.0",
"cors": "^2.8.1",
"debug": "^2.2.0",
"express": "^4.13.4",
"gistfs.js": "^1.0.0",
"hubfs.js": "^1.0.0",
"indexof-property": "^1.1.1",
"knox": "^0.9.2",
"mime-types": "^2.1.10",
"mkdirp": "^0.5.1",
"morgan": "^1.7.0",
"octokat": "^0.4.17",
"openrosa-form-submission-middleware": "^1.1.0",
"openrosa-formlist": "^1.0.1",
"openrosa-request-middleware": "^1.1.0",
"request": "^2.69.0",
"resumer": "0.0.0",
"traverse": "^0.6.6",
"vhost": "^3.0.2",
"xform-to-json": "^1.2.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"dotenv": "^2.0.0",
"proxyquire": "^1.4.0",
"standard": "^6.0.7",
"supertest": "^1.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
"scripts": {
"start": "node server.js",
"start-dev": "env $(cat .env | xargs) node server.js",
"test": "standard && tape tests/**/*.test.js | tap-spec"
},
"bugs": {
"url": "https://github.com/digidem/simple-odk/issues"
},
"homepage": "https://github.com/digidem/simple-odk",
"author": "Gregor MacLennan",
"directories": {
"test": "tests"
}
}