This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
124 lines (124 loc) · 3.93 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "enketo-core",
"description": "Extensible Enketo form engine",
"homepage": "https://enketo.org",
"version": "7.2.5",
"license": "Apache-2.0",
"os": [
"darwin",
"linux",
"win32"
],
"keywords": [
"enketo",
"OpenRosa",
"ODK",
"XForms",
"form"
],
"repository": {
"type": "git",
"url": "https://github.com/enketo/enketo-core"
},
"author": {
"name": "Martijn van de Rijdt",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/martijnvanderijdt"
},
"engines": {
"node": ">=14 <17",
"npm": ">=6 <7"
},
"contributors": [
{
"name": "Alex Anderson"
}
],
"files": [
"src/",
"config.js"
],
"bugs": "https://github.com/enketo/enketo-core/issues",
"main": "src/js/form.js",
"scripts": {
"preinstall": "test -f ./node_modules && ./scripts/preinstall || true",
"start": "grunt develop",
"test": "cross-env NODE_OPTIONS='--max-old-space-size=8192' grunt test",
"test-browsers": "cross-env NODE_OPTIONS='--max-old-space-size=8192' grunt karma:browsers",
"test-watch": "cross-env NODE_OPTIONS='--max-old-space-size=8192' grunt test:watch",
"beautify": "npx prettier --write . && grunt eslint:fix"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.16",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"enketo-transformer": "3.0.1",
"esbuild": "^0.12.29",
"esbuild-plugin-alias": "^0.1.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^40.3.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^40.0.0",
"grunt": "^1.6.1",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.3.0",
"grunt-karma": "^4.0.2",
"grunt-mocha-test": "^0.13.3",
"grunt-sass": "^3.1.0",
"grunt-shell": "^3.0.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-esbuild": "^2.2.5",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^2.0.2",
"libxslt": "0.10.2",
"load-grunt-tasks": "^5.1.0",
"markdown-eslint-parser": "^1.2.1",
"mocha": "^9.2.2",
"node-sass": "^7.0.3",
"prettier": "^2.8.8",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"time-grunt": "^2.0.0"
},
"browser": {
"enketo/config": "./config.js",
"enketo/widgets": "./src/js/widgets.js",
"enketo/translator": "./src/js/fake-translator",
"enketo/dialog": "./src/js/fake-dialog",
"enketo/file-manager": "./src/js/file-manager",
"enketo/xpath-evaluator-binding": "./src/js/xpath-evaluator-binding"
},
"dependencies": {
"bootstrap-datepicker": "1.9.x",
"drag-drop-touch": "^1.3.1",
"html5sortable": "^0.13.3",
"jquery": "3.6.3",
"jquery-touchswipe": "^1.6.19",
"leaflet": "^1.9.4",
"leaflet-draw": "github:enketo/Leaflet.draw#ff73078",
"leaflet.gridlayer.googlemutant": "^0.13.5",
"mergexml": "1.2.3",
"node-forge": "^1.3.1",
"openrosa-xpath-evaluator": "^2.0.13",
"signature_pad": "^4.1.6"
},
"volta": {
"node": "16.5.0",
"npm": "6.14.13"
}
}