forked from enketo/enketo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "openrosa-xpath-evaluator",
"version": "3.1.0",
"description": "Wrapper for browsers' XPath evaluator with added support for OpenRosa extensions.",
"homepage": "https://enketo.org",
"main": "src/openrosa-xpath.js",
"keywords": [
"enketo",
"OpenRosa",
"ODK",
"XForms",
"XPath"
],
"scripts": {
"build": "echo 'openrosa-xpath-evaluator build (currently a noop) complete'",
"test": "yarn test:mocha && yarn test:karma",
"test:mocha": "TZ=America/Phoenix mocha test/unit/mocha-setup.js test/unit/*.spec.js",
"test:karma": "karma start --single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/enketo/enketo"
},
"license": "Apache-2.0",
"bugs": "https://github.com/enketo/enketo/issues",
"devDependencies": {
"lodash": "^4.17.21",
"node-forge": "^1.2.1"
},
"peerDependencies": {
"node-forge": "^1.2.1"
},
"engines": {
"node": ">=18 <21",
"npm": "please-use-yarn",
"yarn": ">= 1.22.22 <2"
},
"volta": {
"node": "20.17.0",
"yarn": "1.22.22"
}
}