-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.25 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
64
65
66
67
68
69
70
71
{
"name": "openchs-models",
"description": "OpenCHS data model to be used by front end clients",
"version": "1.32.20",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/OpenCHS/openchs-models.git"
},
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test-ci": "jest --verbose --forceExit --maxWorkers=2 --ci",
"build": "babel src --out-dir dist --extensions '.js','.ts' && tsc",
"coverage": "istanbul cover --report lcov _mocha --require $(find ./src/test -name '*Test.js')",
"doc": "yarn doc:html && open docs/index.html",
"doc:html": "typedoc",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d docs",
"prettier-all": "prettier --write \"src/**/*.ts\" \"src/**/*.js\""
},
"jest": {
"testMatch": [
"<rootDir>/test/**/*Test.js"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|OpenCHSClient)/"
]
},
"license": "AGPL-3.0",
"peerDependencies": {
"lodash": "*",
"moment": "*"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.7.7",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-register": "^7.0.0-beta.3",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"gh-pages": "^2.2.0",
"jest": "^24.8.0",
"jest-when": "^3.5.2",
"jsdom": "15.1.1",
"jsdom-global": "3.0.2",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"nyc": "^14.1.1",
"prettier": "2.0.5",
"typedoc": "^0.17.4",
"typescript": "^3.7.4",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8",
"yargs": "^13.2.4"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"dependencies": {
"uuid": "^9.0.1"
}
}