-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "rules-config",
"version": "0.0.1",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/OpenCHS/rules-config.git"
},
"license": "AGPL-3.0",
"scripts": {
"test": "jest",
"build": "webpack --config webpack.config.js"
},
"main": "rules.js",
"dependencies": {},
"jest": {
"testMatch": [
"<rootDir>/test/**/*Test.js"
]
},
"devDependencies": {
"superagent": "^3.8.3",
"@quasar/babel-preset-app": "^2.0.1",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"test": "^0.6.0",
"webpack": "^3.12.0",
"webpack-cli": "^3.0.3",
"webpack-node-externals": "1.6.0",
"chai": "^4.1.2",
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-export-extensions": "^7.0.0-beta.32",
"@babel/plugin-transform-destructuring": "^7.16.7",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-typescript": "^7.7.7",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-istanbul": "^5.1.0",
"copy-webpack-plugin": "^4.5.1",
"jest": "^24.8.0",
"openchs-models": "latest",
"lodash": "^4.17.11",
"moment": "^2.22.2"
},
"peerDependencies": {
"openchs-models": "*",
"lodash": "*",
"moment": "*"
}
}