-
Notifications
You must be signed in to change notification settings - Fork 208
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "@openmrs/esm-offline",
"version": "5.8.1",
"license": "MPL-2.0",
"description": "Helper utilities for OpenMRS",
"browser": "dist/openmrs-esm-offline.js",
"main": "src/index.ts",
"source": true,
"scripts": {
"test": "cross-env TZ=UTC jest --config jest.config.js --verbose false --passWithNoTests --color",
"test:watch": "cross-env TZ=UTC jest --watch --config jest.config.js --color",
"build": "webpack --mode=production",
"build:development": "webpack --mode development",
"analyze": "webpack --mode=production --env analyze=true",
"typescript": "tsc",
"lint": "eslint src --ext ts,tsx"
},
"keywords": [
"openmrs",
"microfrontends"
],
"directories": {
"lib": "dist",
"src": "src"
},
"browserslist": [
"extends browserslist-config-openmrs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openmrs/openmrs-esm-core.git"
},
"bugs": {
"url": "https://github.com/openmrs/openmrs-esm-core/issues"
},
"homepage": "https://github.com/openmrs/openmrs-esm-core#readme",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@openmrs/esm-api": "5.x",
"@openmrs/esm-globals": "5.x",
"@openmrs/esm-state": "5.x",
"rxjs": "6.x"
},
"dependencies": {
"dexie": "^3.0.3",
"lodash-es": "^4.17.21",
"uuid": "^9.0.1",
"workbox-window": "^6.1.5"
},
"devDependencies": {
"@openmrs/esm-api": "workspace:*",
"@openmrs/esm-globals": "workspace:*",
"@openmrs/esm-state": "workspace:*",
"@types/uuid": "^9.0.1",
"rxjs": "^6.5.3"
}
}