-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "@visa/visa-charts-data-table",
"version": "3.0.0",
"description": "simple data table component for chart data",
"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/data-table.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"author": "Visa Data Experience Team",
"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-data-table/src' -i '/^src/(.*)/*.(d|spec|test|e2e).ts$|dist/(.*)/' -c 'npm run build'",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"test:es5-check": "es-check es5 'dist/index.cjs.js' 'dist/loader/index.cjs.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/visa/visa-chart-components.git",
"directory": "/packages/data-table"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@visa/charts-types": "^0.6.4",
"@visa/visa-charts-utils": "^5.4.0",
"d3-selection": "^1.4.2"
},
"devDependencies": {
"@visa/visa-charts-utils-dev": "^4.1.4"
},
"resolutions": {
"d3-color": "^3.1.0",
"d3-array": "^3.2.4"
},
"author": "Chris DeMartini",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}