-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "enketo-validate",
"version": "1.6.1",
"description": "An XForm validator around Enketo's form engine",
"main": "src/validator.js",
"bin": "./validate",
"scripts": {
"test": "mocha test/spec/*.spec.js",
"prepublish": "rollup --config && rollup --config rollup.utils.config.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": "^2.20.0",
"enketo-xpath-extensions-oc": "git+https://github.com/OpenClinica/enketo-xpath-extensions-oc.git#22c6b94",
"enketo-xslt": "^1.21.2",
"jsdom": "13.2.x",
"libxslt": "0.7.x"
},
"devDependencies": {
"chai": "^4.2.0",
"enketo-core": "^5.5.1",
"mocha": "^6.2.0",
"pkg": "^4.4.0",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4"
}
}