forked from openmrs/openmrs-esm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "@openmrs/esm-utils",
"version": "4.2.0",
"license": "MPL-2.0",
"description": "Helper utilities for OpenMRS",
"browser": "dist/openmrs-esm-utils.js",
"main": "src/index.ts",
"source": true,
"sideEffects": false,
"scripts": {
"test": "jest --config jest.config.js --passWithNoTests",
"build": "webpack --mode=production",
"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"
},
"devDependencies": {
"@types/semver": "^7.3.4",
"dayjs": "^1.10.4",
"rxjs": "^6.5.3"
},
"peerDependencies": {
"dayjs": "1.x",
"i18next": "19.x",
"rxjs": "6.x"
},
"dependencies": {
"semver": "7.3.2"
}
}