forked from OpenClinica/enketo-express-oc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.41 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "enketo-express",
"description": "Webforms evolved.",
"homepage": "https://enketo.org",
"version": "1.45.2",
"main": "./app.js",
"engines": {
"node": "4.4.x",
"npm": "2.14.x"
},
"repository": {
"type": "git",
"url": "https://github.com/kobotoolbox/enketo-express"
},
"author": {
"name": "Martijn van de Rijdt",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/martijnvanderijdt"
},
"contributors": [],
"scripts": {
"start": "node .",
"test": "grunt test",
"postinstall": "grunt"
},
"private": true,
"license": "Apache-2.0",
"dependencies": {
"aliasify": "2.1.x",
"basic-auth": "1.1.x",
"body-parser": "1.x.x",
"bristol": "0.3.x",
"busboy": "0.2.x",
"compression": "1.x.x",
"cookie-parser": "1.4.x",
"crypto-js": "3.1.x",
"csurf": "1.9.x",
"db.js": "0.15.0",
"debug": "2.x.x",
"enketo-core": "4.32.1",
"enketo-transformer": "1.16.0",
"enketo-xpathjs-oc": "https://github.com/openclinica/enketo-xpathjs-oc.git#44b0e5a",
"express": "4.x.x",
"file-saver": "1.3.x",
"grunt": "1.0.x",
"grunt-browserify": "5.0.x",
"grunt-contrib-uglify": "2.3.x",
"grunt-env": "0.4.x",
"grunt-i18next": "0.1.x",
"grunt-sass": "2.0.x",
"grunt-shell-spawn": "0.3.x",
"i18next": "8.1.x",
"i18next-browser-languagedetector": "1.0.x",
"i18next-express-middleware": "1.0.x",
"i18next-node-fs-backend": "1.0.x",
"i18next-xhr-backend": "1.4.x",
"pug": "2.0.0-beta6",
"jquery": "3.2.x",
"jszip": "3.1.x",
"jwt-simple": "0.5.x",
"libxslt": "0.6.5",
"lie": "3.1.x",
"load-grunt-tasks": "3.x.x",
"lodash": "4.17.x",
"morgan": "1.x.x",
"papaparse": "4.3.x",
"redis": "2.7.1",
"request": "2.81.x",
"serve-favicon": "2.x.x",
"time-grunt": "1.x.x",
"vex-js": "2.3.x",
"xml2js": "0.4.x"
},
"devDependencies": {
"chai": "3.5.x",
"chai-as-promised": "*",
"grunt-concurrent": "2.x.x",
"grunt-contrib-jshint": "1.1.x",
"grunt-contrib-watch": "1.0.x",
"grunt-jsbeautifier": "0.2.x",
"grunt-karma": "2.0.x",
"grunt-mocha-test": "0.13.x",
"grunt-nodemon": "0.4.x",
"gulp": "3.9.x",
"i18next-parser": "0.11.1",
"karma": "1.6.0",
"karma-browserify": "5.1.x",
"karma-chrome-launcher": "2.0.x",
"karma-firefox-launcher": "1.0.x",
"karma-mocha": "1.3.x",
"karma-opera-launcher": "1.0.x",
"karma-phantomjs-launcher": "1.0.x",
"karma-safari-launcher": "1.0.x",
"karma-sinon-chai": "1.3.x",
"mocha": "3.3.x",
"multer": "^1.2.0",
"phantomjs-prebuilt": "2.1.x",
"sinon": "2.1.x",
"sinon-chai": "2.10.x",
"supertest": "3.0.x"
},
"aliasify": {
"aliases": {
"enketo-config": "./public/temp-client-config.json",
"widgets": "./public/js/src/module/widgets",
"translator": "./public/js/src/module/translator",
"../../js/file-manager": "./public/js/src/module/file-manager",
"enketo-xpathjs": "enketo-xpathjs-oc"
}
}
}