-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.43 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.43 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
{
"name": "@dxc-technology/halstack-client",
"version": "1.6.4",
"description": "DXC Technology Halstack Client",
"repository": {
"type": "git",
"url": "https://github.com/dxc-technology/dxc-halstack-client"
},
"main": "./main.cjs",
"module": "./main.js",
"scripts": {
"bundle": "rollup -c",
"copy": "node ./scripts/build/copy-distribution-files.js",
"start": "rollup -c -w",
"build": "npm run bundle && npm run copy",
"test": "jest --collect-coverage --transformIgnorePatterns node_modules/?!axios/",
"test:watch": "npm test --watch --coverage",
"test:coverage": "npm test --collect-coverage --coverageReporters=cobertura",
"test:coverage-dashboard": "npm test --collect-coverage"
},
"author": "DXC Halstack team",
"license": "Apache v2.0",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"axios-mock-adapter": "^1.22.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"babel-loader": "^9.2.1",
"babel-polyfill": "^6.26.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"regenerator-runtime": "^0.13.1",
"rollup": "^4.28.0",
"rollup-plugin-node-resolve": "^4.0.0"
},
"dependencies": {
"axios": "^1.8.2"
}
}