-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "cht-conf-test-harness",
"version": "5.0.2",
"description": "Test Framework for CHT Projects",
"repository": {
"type": "git",
"url": "https://github.com/medic/cht-conf-test-harness.git"
},
"main": "./src/harness.js",
"scripts": {
"test": "npx mocha test/*.spec.js --timeout 25000 --slow 500",
"build": "npm run docs && ./build.sh",
"docs": "npx jsdoc src/*.js src/**/*.js ./JSDOC.md -d docs",
"explore": "node ./project-explorer/build-assets.js --path=./test/collateral/project-without-source --formPath=./test/collateral && cd project-explorer && webpack && google-chrome ./project-explorer.html",
"eslint": "npx eslint .",
"git-ci": "npm run docs && npm run eslint && npm test",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"dependencies": {
"lodash": "^4.17.15",
"luxon": "^1.27.0",
"md5": "^2.3.0",
"nools": "^0.4.4",
"pouchdb": "^7.2.2",
"pouchdb-adapter-memory": "^7.2.2",
"puppeteer-chromium-resolver": "^10.0.0",
"semver": "^7.3.5",
"sinon": "^10.0.1",
"util": "^0.12.5",
"uuid": "^3.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@medic/eslint-config": "^1.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"bikram-sambat": "^1.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.0.2",
"couchdb-compile": "^1.11.0",
"css-loader": "^6.8.1",
"eslint": "^6.8.0",
"husky": "^9.0.11",
"jquery": "^3.5.1",
"jsdoc": "^3.6.3",
"mocha": "^6.1.4",
"raw-loader": "^1.0.0",
"rewire": "^4.0.1",
"semantic-release": "^23.0.6",
"style-loader": "^3.3.3",
"webpack": "^5.93.0",
"webpack-clean-console-plugin": "^0.0.7",
"webpack-cli": "^3.3.0"
}
}