This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
84 lines (84 loc) · 2.84 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
{
"name": "enketo-transformer",
"version": "2.1.6",
"description": "Library/app that transforms ODK-compliant XForms into a format that Enketo can consume",
"license": "Apache-2.0",
"main": "src/transformer.js",
"bugs": {
"url": "https://github.com/enketo/enketo-transformer/issues",
"email": "martijn@enketo.org"
},
"author": {
"name": "Martijn van de Rijdt",
"email": "martijn@enketo.org",
"url": "https://www.linkedin.com/in/martijnvanderijdt"
},
"engines": {
"node": ">=14 <17",
"npm": ">=6 <7"
},
"contributors": [],
"scripts": {
"start": "node app.js",
"eslint-check": "eslint app.js src/**/*.js test/**/*.js",
"eslint-fix": "eslint app.js src/**/*.js test/**/*.js --fix",
"prettier-fix": "prettier --write .",
"test": "nyc mocha test/*.spec.js --timeout 6000 && npm run prettier-fix && npm run eslint-fix && node update-readme-with-shield-badge.js",
"test:watch": "nodemon --exec 'mocha test/*.spec.js --timeout 6000000' --watch src --watch test --ext js,xml,xsl",
"build-docs": "rimraf docs && ./node_modules/.bin/jsdoc -c jsdoc.config.js",
"develop": "DEBUG=api,transformer,markdown,language node app.js & http-server test/forms -p 8081"
},
"repository": {
"type": "git",
"url": "https://github.com/enketo/enketo-transformer.git"
},
"keywords": [
"Enketo",
"ODK",
"OpenRosa",
"XSLT",
"XSL",
"Transformer"
],
"dependencies": {
"body-parser": "^1.20.1",
"express": "^4.18.2",
"language-tags": "1.0.5",
"libxslt": "0.10.0",
"string-direction": "0.1.x",
"undici": "^5.13.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@xmldom/xmldom": "^0.7.9",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"docdash": "^1.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^36.1.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^36.0.0",
"grunt": "^1.5.3",
"http-server": "^13.1.0",
"istanbul-reporter-shield-badge": "^1.2.1",
"jsdoc": "^3.6.11",
"jsdoc-plugin-typescript": "^2.2.0",
"markdown-eslint-parser": "^1.2.1",
"mocha": "^9.2.2",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2"
},
"volta": {
"node": "16.5.0",
"npm": "6.14.13"
}
}