forked from WISCENTD-UPC/dhis2-godata-interoperability
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 KB
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
{
"name": "dhis2-godata-interoperability",
"version": "0.4.0",
"description": "Scripts to exchange data between dhis2 and Go.Data instances",
"module": "src/index.js",
"main": "dist/index.js",
"scripts": {
"prepare": "mkdir -p dist && babel src/ -d dist",
"test": "NODE_ENV=development jest",
"test-watch": "NODE_ENV=development jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WISCENTD-UPC/dhis2-godata-interoperability.git"
},
"author": "Pablo-Rodriguez <rodpepablo@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/WISCENTD-UPC/dhis2-godata-interoperability/issues"
},
"homepage": "https://github.com/WISCENTD-UPC/dhis2-godata-interoperability#readme",
"bundleDependencies": [
"@babel/cli",
"@babel/core",
"@babel/preset-env"
],
"dependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"commander": "^5.1.0",
"dhis2-api-wrapper": "git+ssh://git@github.com/WISCENTD-UPC/dhis2-api-wrapper.git#develop",
"godata-api-wrapper": "git+ssh://git@github.com/WISCENTD-UPC/godata-api-wrapper.git#develop",
"ramda": "^0.27.0"
},
"devDependencies": {
"core-js": "^3.8.3",
"jest": "^26.2.2",
"regenerator-runtime": "^0.13.7",
"uuid": "^8.3.0"
},
"jest": {
"transform": null,
"setupFiles": [
"core-js/stable",
"regenerator-runtime/runtime"
]
}
}