-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
77 lines (77 loc) · 2.45 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
{
"name": "@visa/alluvial-diagram",
"version": "4.0.0",
"description": "VCCs alluvial diagram component",
"license": "SEE LICENCE IN LICENSE",
"module": "dist/index.js",
"main": "dist/index.cjs.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"unpkg": "dist/alluvial-diagram.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"audit": "yarn audit --json --level low > yarn-audit.json",
"yarn-install": "yarn",
"build": "stencil build",
"start-dev": "stencil build --dev --watch --serve",
"watch": "chokidar -d=4 '**/*.{tsx,ts,scss}' 'node_modules/@visa/visa-charts-utils/src' -i '/^src/(.*)/*.(d|spec|test|e2e).ts$|dist/(.*)/' -c 'npm run build'",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"test": "stencil test --spec --no-cache --color --coverage --json --outputFile=./coverage/test-report.json",
"test:watch": "jest -watch",
"test:es5-check": "es-check es5 'dist/index.cjs.js' 'dist/loader/index.cjs.js'",
"update-snapshot": "stencil test --spec --updateSnapshot --color"
},
"repository": {
"type": "git",
"url": "https://github.com/visa/visa-chart-components.git",
"directory": "/packages/alluvial-diagram"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@visa/charts-types": "^0.6.4",
"@visa/keyboard-instructions": "^2.0.0",
"@visa/visa-charts-data-table": "^3.0.0",
"@visa/visa-charts-utils": "^5.4.0",
"d3-array": "^3.2.4",
"d3-scale": "^2.2.2",
"d3-selection": "^1.4.2",
"d3-shape": "^1.3.7",
"d3-transition": "1.1.3",
"uuid": "8.3.2"
},
"devDependencies": {
"@visa/visa-charts-utils-dev": "^4.1.4"
},
"author": "Visa Data Experience Team",
"resolutions": {
"d3-color": "^3.1.0",
"d3-array": "^3.2.4"
},
"jest": {
"preset": "@stencil/core/testing",
"testRunner": "jest-jasmine2",
"collectCoverageFrom": [
"**/*.{tsx,ts}",
"!**/node_modules/**",
"!**/*.d.ts",
"!**/*.{e2e.ts,spec.ts}",
"!**/(app-**).{tsx}",
"!**/**-values.{ts}"
]
},
"jest-html-reporter": {
"pageTitle": "@visa/alluvial-diagram",
"outputPath": "./coverage/test-report.html",
"executionMode": "reporter",
"sort": "status",
"statusIgnoreFilter": "pending,passed"
}
}