-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (60 loc) · 1.92 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
{
"name": "enketo-validate",
"version": "4.0.0",
"description": "An XForm validator around Enketo's form engine",
"main": "src/validator.js",
"bin": "./validate",
"scripts": {
"test": "mocha test/spec/*.spec.js --exit --timeout 9000 && npm run style-check",
"build-docs": "rimraf docs && ./node_modules/.bin/jsdoc -c jsdoc.config.js",
"prepare": "rollup --config && rollup --config rollup.utils.config.mjs",
"style-fix": "eslint *.js src/**/*.js test/**/*.js --fix",
"style-check": "eslint *.js src/**/*.js test/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enketo/enketo-validate.git"
},
"keywords": [
"Enketo",
"XForms",
"ODK",
"Validator"
],
"resolutions": {
"nan": "^2.17.0",
"libxslt/nan": "^2.17.0",
"node1-libxmljsmt-myh/nan": "^2.17.0"
},
"author": "Martijn van de Rijdt",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/enketo/enketo-validate/issues"
},
"homepage": "https://github.com/enketo/enketo-validate#readme",
"dependencies": {
"commander": "^11.1.0",
"enketo-transformer": "^4.0.0",
"enketo-xpath-extensions-oc": "git+https://github.com/OpenClinica/enketo-xpath-extensions-oc.git#ab81eeb7d0f1fb34bcf2615d2c6a27c3b0915f56",
"jsdom": "^22.1.0",
"libxslt": "0.10.2",
"puppeteer": "^20.9.0"
},
"devDependencies": {
"chai": "^4.3.10",
"docdash": "^2.0.2",
"enketo-core": "^8.0.0",
"eslint": "^8.52.0",
"eslint-plugin-jsdoc": "^46.8.2",
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"volta": {
"node": "20.5.1",
"yarn": "1.22.19"
}
}