-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
97 lines (97 loc) · 2.95 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "cht-conf",
"version": "4.1.2",
"description": "Configure CHT deployments",
"main": "./src/lib/main.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rm -rf ./build/",
"eslint": "eslint 'src/**/*.js' test/*.js 'test/**/*.js'",
"test": "npm run clean && mkdir -p build/test && cp -r test/data build/test/data && cd build/test && nyc --reporter=html mocha \"../../test/**/*.spec.js\" --exclude \"../../test/e2e/**/*.spec.js\"",
"test-e2e": "mocha --config test/e2e/.mocharc.js",
"semantic-release": "semantic-release"
},
"bin": {
"medic-conf": "src/bin/index.js",
"cht": "src/bin/index.js",
"medic-logs": "src/bin/cht-logs.bash",
"cht-logs": "src/bin/cht-logs.bash",
"shell-completion-for-medic-conf": "src/bin/shell-completion.js",
"shell-completion-for-cht": "src/bin/shell-completion.js",
"pngout-medic": "bin/pngout",
"pngout-cht": "bin/pngout"
},
"repository": {
"type": "git",
"url": "https://github.com/medic/cht-conf.git"
},
"author": "",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/medic/cht-conf/issues"
},
"homepage": "https://github.com/medic/cht-conf#readme",
"dependencies": {
"@medic/translation-checker": "^1.1.0",
"@parcel/watcher": "^2.1.0",
"@xmldom/xmldom": "^0.8.10",
"async-retry": "^1.3.3",
"canonical-json": "0.0.4",
"csv-parse": "^5.5.6",
"dom-compare": "^0.6.0",
"eslint": "^8.57.0",
"eslint-webpack-plugin": "^2.7.0",
"googleapis": "^140.0.1",
"iso-639-1": "^3.1.2",
"joi": "^17.13.3",
"json-diff": "^1.0.6",
"json-stringify-safe": "^5.0.1",
"json2csv": "^4.5.4",
"mime-types": "^2.1.35",
"minimist": "^1.2.8",
"mkdirp": "^3.0.1",
"open": "^8.4.2",
"pluralize": "^8.0.0",
"pouchdb-adapter-http": "^7.2.2",
"pouchdb-core": "^7.2.2",
"pouchdb-mapreduce": "^7.2.2",
"pouchdb-session-authentication": "^1.4.0",
"properties": "^1.2.1",
"queue-promise": "^2.2.1",
"readline-sync": "^1.4.10",
"redact-basic-auth": "^1.0.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"semver": "^7.6.3",
"svgo": "^3.3.2",
"terser-webpack-plugin": "^5.3.10",
"uuid": "^10.0.0",
"webpack": "^5.93.0",
"xpath": "0.0.33"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"body-parser": "^1.20.2",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.1.0",
"chai-shallow-deep-equal": "^1.4.6",
"chai-xml": "^0.4.1",
"eslint-plugin-n": "^17.9.0",
"express": "^4.19.2",
"express-pouchdb": "^4.2.0",
"fs-extra": "11.2.0",
"husky": "^9.1.1",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"pouchdb-adapter-memory": "^7.2.2",
"rewire": "^7.0.0",
"semantic-release": "^22.0.0",
"sinon": "^18.0.0"
}
}