forked from enketo/enketo-validate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.77 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
{
"name": "enketo-validate",
"version": "2.1.1",
"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"
],
"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": "^10.0.0",
"enketo-transformer": "^2.1.7",
"enketo-xpath-extensions-oc": "git+https://github.com/OpenClinica/enketo-xpath-extensions-oc.git#ab81eeb7d0f1fb34bcf2615d2c6a27c3b0915f56",
"jsdom": "^21.1.0",
"libxslt": "0.10.1",
"puppeteer": "^19.6.3"
},
"devDependencies": {
"chai": "^4.3.7",
"docdash": "^2.0.1",
"enketo-core": "^6.1.7",
"eslint": "^8.33.0",
"eslint-plugin-jsdoc": "^39.8.0",
"istanbul-reporter-shield-badge": "^1.2.1",
"jsdoc": "^4.0.0",
"mocha": "^10.2.0",
"rimraf": "^4.1.2",
"rollup": "^3.13.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}