-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
177 lines (177 loc) · 5.69 KB
/
package.json
File metadata and controls
177 lines (177 loc) · 5.69 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "lineupjs",
"description": "LineUp is an interactive technique designed to create, visualize and explore rankings of items based on a set of heterogeneous attributes.",
"version": "4.16.0",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
"url": "https://www.sgratzl.com"
},
"contributors": [
{
"name": "Caleydo Team",
"email": "[email protected]",
"url": "https://caleydo.org"
},
{
"name": "Holger Stitz",
"email": "[email protected]"
},
{
"name": "Marc Streit",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/lineupjs/lineupjs/issues"
},
"homepage": "https://lineup.js.org",
"repository": {
"type": "git",
"url": "https://github.com/lineupjs/lineupjs.git"
},
"global": "LineUpJS",
"main": "build/LineUpJS.js",
"unpkg": "build/LineUpJS.js",
"jsdelivr": "build/LineUpJS.js",
"module": "build/src/index.js",
"types": "build/src/index.d.ts",
"exports": {
".": {
"import": "./build/src/index.js",
"require": "./build/LineUpJS.js",
"style": "./build/LineUpJS.css",
"sass": "./src/style.scss",
"types": "./build/src/index.d.ts"
},
"./*": "./build/src/*.js",
"./.pnp.cjs": "./.pnp.cjs",
"./build/*": "./build/*",
"./src/*": "./src/*"
},
"styles": "build/LineUpJS.css",
"sideEffects": [
"*.scss",
"*.css"
],
"browserslist": [
"Firefox ESR",
"last 2 Firefox versions",
"last 2 Chrome versions"
],
"files": [
"build",
"src",
"!build/tests",
"!build/demo"
],
"scripts": {
"clean": "rimraf --glob build dist docs \"*.tgz\" && npm run clean:compile",
"clean:compile": "rimraf --glob build/src \"build/*.tsbuildinfo\" \"*.tsbuildinfo\" ",
"compile": "tsc -b ./tsconfig.json",
"compile:dev": "tsc -b ./tsconfig.dev.json",
"fix": "npm run eslint:fix && npm run prettier:write && npm run stylelint:fix",
"prettier:write": "prettier \"*\" \"*/**\" --write",
"prettier": "prettier \"*\" \"*/**\" --check",
"eslint": "eslint src --cache",
"eslint:fix": "npm run eslint -- --fix",
"stylelint": "stylelint \"src/**/*.scss\"",
"stylelint:fix": "npm run stylelint -- --fix",
"lint": "npm run eslint && npm run prettier && npm run stylelint",
"docs": "npm run clean:compile && typedoc --tsconfig tsconfig.dev.json",
"test": "jest --passWithNoTests --detectOpenHandles --forceExit",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"build:dev": "webpack --mode development --devtool source-map",
"build": "webpack --mode production --devtool source-map",
"dev": "npm run clean && npm run compile:dev && npm run build:dev",
"watch": "webpack --mode development --watch --devtool source-map",
"start": "webpack serve --mode development --devtool source-map",
"prepare": "echo 'dummy prepare since prepack has no dev dependencies'",
"prepack": "npm run clean && npm run compile && npm run build",
"cy:compile": "npm run compile && cd cypress && tsc",
"cy:clean": "rimraf \"cypress/*.tsbuildinfo\" \"cypress/integration/**/*.+(js|d.ts)\"",
"cy:open": "cypress open",
"cy:start": "cypress open --config baseUrl=http://localhost:8080",
"cy:run": "npm run cy:compile && cypress run",
"cy:junit": "npm run cy:compile && cypress run --reporter junit --reporter-options 'mochaFile=junit-results/my-test-output.xml'"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"@types/jest": "^29.5.14",
"@types/lodash": "4.17.13",
"@types/node": "^22.10.2",
"@yarnpkg/sdks": "^3.2.0",
"css-loader": "^7.1.2",
"cypress": "^13.17.0",
"d3-array": "^3.2.4",
"d3-interpolate": "^3.0.1",
"eslint": "^9.17.0",
"eslint-plugin-prettier": "^5.2.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"mkdirp": "^3.0.1",
"mocha-junit-reporter": "^2.2.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"stylelint": "^16.12.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-prettier": "^5.0.2",
"stylelint-scss": "^6.10.0",
"thread-loader": "^4.0.4",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"optionalDependencies": {
"sass-embedded": "^1.83.0"
},
"dependencies": {
"@floating-ui/dom": "^1.6.12",
"@types/d3-color": "^3.1.3",
"@types/d3-dispatch": "^3.0.6",
"@types/d3-format": "^3.0.4",
"@types/d3-scale": "^4.0.8",
"@types/d3-scale-chromatic": "^3.1.0",
"@types/d3-time": "^3.0.4",
"@types/d3-time-format": "^4.0.3",
"@types/lodash.get": "4.4.9",
"d3-color": "^3.1.0",
"d3-dispatch": "^3.0.1",
"d3-format": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-time": "^3.1.0",
"d3-time-format": "^4.1.0",
"detect-browser": "^5.3.0",
"fast-deep-equal": "^3.1.3",
"lineupengine": "^2.5.3",
"lodash.get": "^4.4.2",
"reflect-metadata": "^0.2.2"
},
"packageManager": "[email protected]",
"dependenciesMeta": {
"@fortawesome/[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
}
}
}