source: node_modules/victory-vendor/package.json@ ba17441

Last change on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 3.2 KB
Line 
1{
2 "name": "victory-vendor",
3 "version": "37.3.6",
4 "description": "Vendored dependencies for Victory",
5 "keywords": [
6 "data visualization",
7 "React",
8 "d3",
9 "charting"
10 ],
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/FormidableLabs/victory"
14 },
15 "homepage": "https://commerce.nearform.com/open-source/victory",
16 "author": "Formidable",
17 "license": "MIT AND ISC",
18 "exports": {
19 "./package.json": "./package.json",
20 "./d3-*": {
21 "types": "./d3-*.d.ts",
22 "import": "./es/d3-*.js",
23 "default": "./lib/d3-*.js"
24 }
25 },
26 "dependencies": {
27 "@types/d3-array": "^3.0.3",
28 "@types/d3-ease": "^3.0.0",
29 "@types/d3-interpolate": "^3.0.1",
30 "@types/d3-scale": "^4.0.2",
31 "@types/d3-shape": "^3.1.0",
32 "@types/d3-time": "^3.0.0",
33 "@types/d3-timer": "^3.0.0",
34 "d3-array": "^3.1.6",
35 "d3-ease": "^3.0.1",
36 "d3-interpolate": "^3.0.1",
37 "d3-scale": "^4.0.2",
38 "d3-shape": "^3.1.0",
39 "d3-time": "^3.0.0",
40 "d3-timer": "^3.0.1"
41 },
42 "devDependencies": {
43 "d3-color": "^3.1.0",
44 "d3-format": "^3.1.0",
45 "d3-path": "^3.0.1",
46 "d3-time-format": "^4.1.0",
47 "d3-voronoi": "^1.1.4",
48 "internmap": "^2.0.3",
49 "execa": "^6.1.0",
50 "rimraf": "^3.0.2"
51 },
52 "publishConfig": {
53 "provenance": true
54 },
55 "wireit": {
56 "build": {
57 "command": "node ./scripts/build.js",
58 "files": [
59 ".babelrc.js",
60 "scripts/build.js",
61 "node_modules/**"
62 ],
63 "output": [
64 "es/**",
65 "lib/**",
66 "lib-vendor/**",
67 "d3-*"
68 ],
69 "packageLocks": [
70 "pnpm-lock.yaml"
71 ]
72 },
73 "build:lib:esm": {
74 "dependencies": [
75 "build"
76 ]
77 },
78 "build:lib:cjs": {
79 "dependencies": [
80 "build"
81 ]
82 },
83 "build:dist": {
84 "dependencies": [
85 "build"
86 ]
87 },
88 "build:dist:dev": {
89 "dependencies": [
90 "build"
91 ]
92 },
93 "build:dist:min": {
94 "dependencies": [
95 "build"
96 ]
97 },
98 "check": {
99 "dependencies": [
100 "types:check",
101 "jest",
102 "format",
103 "lint"
104 ]
105 },
106 "types:check": {
107 "command": "echo \"No types to check here\"",
108 "files": [],
109 "output": []
110 },
111 "types:create": {
112 "dependencies": [
113 "build"
114 ]
115 },
116 "lint": {
117 "command": "eslint scripts",
118 "files": [
119 "scripts/**"
120 ],
121 "output": [],
122 "packageLocks": [
123 "pnpm-lock.yaml"
124 ]
125 },
126 "lint:fix": {
127 "command": "eslint --fix scripts",
128 "files": [
129 "scripts/**"
130 ],
131 "output": [],
132 "packageLocks": [
133 "pnpm-lock.yaml"
134 ]
135 },
136 "jest": {
137 "command": "echo victory-vendor has no tests",
138 "files": [],
139 "output": []
140 }
141 },
142 "scripts": {
143 "build": "wireit",
144 "build:lib": "wireit",
145 "build:lib:esm": "wireit",
146 "build:lib:cjs": "wireit",
147 "build:dist": "wireit",
148 "build:dist:dev": "wireit",
149 "build:dist:min": "wireit",
150 "check": "wireit",
151 "types:check": "wireit",
152 "types:create": "wireit",
153 "lint": "wireit",
154 "lint:fix": "wireit",
155 "jest": "wireit"
156 }
157}
Note: See TracBrowser for help on using the repository browser.