forked from enketo/enketo-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.55 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-core",
"description": "Extensible Enketo form engine",
"homepage": "https://enketo.org",
"version": "5.13.1",
"license": "Apache-2.0",
"os": [
"darwin",
"linux",
"win32"
],
"keywords": [
"enketo",
"OpenRosa",
"ODK",
"XForms"
],
"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"
},
"contributors": [
{
"name": "Alex Anderson"
}
],
"files": [
"src/",
"config.js"
],
"bugs": "https://github.com/enketo/enketo-core/issues",
"main": "src/js/form.js",
"scripts": {
"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",
"beautify": "grunt jsbeautifier:fix",
"build-docs": "rimraf docs && ./node_modules/.bin/jsdoc -c jsdoc.config.js",
"remove-docs": "rm -R ./docs/*.html",
"publish-please-pre-script": "npm run test && npm run beautify && npm run build-docs",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"browserify": "^16.5.0",
"cross-env": "^7.0.0",
"docdash": "^1.2.0",
"enketo-transformer": "1.38.1",
"eslint-plugin-jsdoc": "21.x.x",
"grunt": "^1.0.4",
"grunt-concurrent": "3.x.x",
"grunt-contrib-connect": "2.1.x",
"grunt-contrib-watch": "1.x.x",
"grunt-eslint": "22.0.x",
"grunt-jsbeautifier": "0.x.x",
"grunt-karma": "3.0.2",
"grunt-sass": "^3.1.0",
"grunt-shell": "3.0.x",
"istanbul": "^0.4.5",
"istanbul-reporter-shield-badge": "^1.2.1",
"jasmine-core": "^3.5.0",
"jsdoc": "^3.6.3",
"json-pretty": "0.0.1",
"karma": "4.4.x",
"karma-chrome-launcher": "3.1.x",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "1.3.x",
"karma-jasmine": "^3.1.0",
"karma-rollup-preprocessor": "^7.0.3",
"karma-safari-launcher": "1.0.x",
"load-grunt-tasks": "^5.1.0",
"node-sass": "^4.13.1",
"publish-please": "^5.5.1",
"rimraf": "^3.0.1",
"rollup": "1.30.x",
"rollup-plugin-commonjs": "10.1.x",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-json": "4.0.x",
"rollup-plugin-node-resolve": "5.2.x",
"time-grunt": "2.x.x"
},
"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"
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"bootstrap-datepicker": "1.9.x",
"core-js": "^3.6.4",
"enketo-xpathjs": "1.9.4",
"html5sortable": "0.9.17",
"jquery": "^3.4.1",
"jquery-touchswipe": "^1.6.19",
"leaflet": "1.6.x",
"leaflet-draw": "github:enketo/Leaflet.draw#ff73078",
"leaflet.gridlayer.googlemutant": "0.8.x",
"mergexml": "1.2.1",
"signature_pad": "2.3.x"
}
}