-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
70 lines (70 loc) · 1.77 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
{
"name": "@visa/charts-react",
"version": "5.0.1",
"description": "A react wrapper built with Stencil's bindings for the visa-charts-lib stencil.js based component library. ",
"license": "SEE LICENCE IN LICENSE",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"repository": {
"type": "git",
"url": "https://github.com/visa/visa-chart-components.git",
"directory": "/packages/charts-react"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"author": "Visa Data Experience Team",
"scripts": {
"audit": "yarn audit --json --level low > yarn-audit.json",
"yarn-install": "yarn",
"build": "npm run clean && npm run compile",
"clean": "rm -rf dist",
"compile": "npm run tsc",
"tsc": "tsc -p .",
"test:es5-check": "es-check es5 'dist/*.js'"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"@visa/charts": "^8.0.1",
"@visa/charts-types": "^0.6.5"
},
"devDependencies": {
"@types/node": "20.16.2",
"@types/react": "18.3.4",
"@types/react-dom": "^18.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.79.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^5.5.3"
},
"resolutions": {
"@types/node": "20.16.2",
"@types/react": "18.3.4",
"@types/react-dom": "^18.3.0",
"minimist": "^1.2.6",
"path-parse": "^1.0.7",
"d3-color": "^3.1.0"
},
"jest": {
"preset": "ts-jest",
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
}
}