-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "avni-health-modules",
"version": "0.0.26",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/avniproject/avni-health-modules.git"
},
"main": "dist/index.js",
"license": "AGPL-3.0",
"scripts": {
"build": "babel src --out-dir dist --extensions '.js' --ignore src/test",
"test": "jest"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/src/test/JestLifecycle"
],
"moduleFileExtensions": [
"js",
"json"
],
"testMatch": [
"**/test/**/*Test.js"
],
"verbose": false,
"bail": true,
"moduleNameMapper": {
"^avni-models$": "<rootDir>/node_modules/openchs-models"
},
"transformIgnorePatterns": [
"/node_modules/(?!rules-config).+\\.js$"
]
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-register": "^7.0.0-beta.3",
"chai": "^4.2.0",
"jest": "^26.6.3",
"lodash": "4.17.11",
"moment": "2.19.3",
"openchs-models": "latest",
"rules-config": "github:openchs/rules-config#a35ade353300f8dde3a20af4234b49036e2fda16"
},
"peerDependencies": {
"lodash": "*",
"moment": "*",
"openchs-models": "*",
"rules-config": "*"
}
}