-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.04 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@opentelekomcloud/oms",
"version": "0.1.5-beta.1",
"description": "Micro SDK for OpenTelekomCloud",
"repository": {
"type": "git",
"url": "git+https://github.com/opentelekomcloud/oms.git"
},
"author": "Anton Kachurin <[email protected]>",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/eslint": "^7",
"@types/jest": "^26.0.22",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4",
"@types/node": "^14.11.2",
"@types/query-string": "^6",
"@types/systemjs": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"@yarnpkg/plugin-node-modules": "^2.1.1",
"@yarnpkg/pnpify": "^2.2.1",
"babel-register": "^6.26.0",
"browserify": "^16.5.2",
"codecov": "^3.7.2",
"eslint": "^7.10.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"fast-sha256": "^1.3.0",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jsonschema": "^1.2.7",
"nyc": "^15.1.0",
"systemjs-plugin-babel": "^0.0.25",
"ts-jest": "^26.4.0",
"ts-loader": "^8.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"webpack": "webpack-4",
"webpack-cli": "^4.0.0",
"webpack-license-plugin": "^4.1.1"
},
"jest": {
"preset": "ts-jest",
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json"
],
"roots": [
"tests"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "node",
"setupFiles": [
"./tests/setupJest.ts"
]
},
"scripts": {
"cov-rename": "mv ./coverage/coverage-final.json ./coverage/coverage-$0.json",
"lint": "eslint --fix ./src/**/*.ts ./tests/**/*.ts",
"unit": "jest ./tests/unit && yarn cov-rename unit",
"integration": "jest ./tests/integration && yarn cov-rename integration",
"functional": "jest ./tests/functional && yarn cov-rename functional",
"cov-merge": "nyc merge coverage coverage/merged-coverage.json",
"cov-report:html": "nyc report -t coverage --report-dir coverage/report --reporter=html --reporter=cobertura",
"cov-report:codecov": "nyc report -t coverage --reporter=text-lcov > coverage.lcov && yarn codecov",
"test": "yarn clean && yarn unit && yarn integration && yarn functional && yarn cov-merge",
"build": "tsc -p ./src && echo Built!",
"clean": "rm -rf ./dist ./coverage && echo Cleaned!",
"release": "yarn clean && yarn build && webpack --mode production"
},
"dependencies": {
"@types/json-schema": "^7.0.15",
"cross-fetch": "^3.1.4",
"is-cidr": "^4.0.2",
"json-schema": "^0.4.0",
"lodash": "^4.17.20",
"query-string": "^6.13.2"
},
"bugs": {
"url": "https://github.com/opentelekomcloud/oms/issues"
},
"homepage": "https://github.com/opentelekomcloud/oms#readme",
"directories": {
"lib": "dist",
"test": "tests"
}
}