forked from lineupjs/lineupjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
158 lines (158 loc) · 5.27 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
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
{
"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.1.1",
"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",
"main": "build/LineUpJS.js",
"unpkg": "build/LineUpJS.js",
"module": "src/index.js",
"types": "build/src/index.d.ts",
"sideEffects": [
"*.scss",
"*.css"
],
"browserslist": [
"Firefox ESR",
"last 2 Firefox versions",
"last 2 Chrome versions",
"last 2 Edge versions",
"Edge 18"
],
"files": [
"build",
"!build/docs",
"!build/tests",
"!build/demo",
"src/**/*.js",
"src/**/*.d.ts",
"src/assets",
"src/**/*.scss"
],
"scripts": {
"clean": "rimraf build dist && npm run clean:compile",
"clean:compile": "rimraf node_modules/.cache/cache-loader *.tsbuildinfo build/src build/tests src/**/*.map src/**/*.js src/**/*.d.ts tests/**/*.js tests/**/*.map tests/**/*.d.ts demo/*.js demo/*.map demo/*.d.ts",
"compile": "tsc -p ./tsconfig.prod.json",
"compile:dev": "tsc -p ./tsconfig.dev.json",
"lint": "tslint -p tsconfig.json -c tslint.json && stylelint src/**/*.scss",
"docs": "npm run clean:compile && typedoc --tsconfig tsconfig.dev.json --out ./build/docs/ --plugin typedoc-plugin-as-member-of src tsd.d.ts",
"pretest": "npm run clean && npm run compile",
"test": "jest",
"test:watch": "jest --watch",
"posttest": "npm run lint",
"prebuild": "npm run clean && npm run test",
"build:dev": "webpack --mode development --devtool source-map",
"build:prod": "webpack --mode production --devtool source-map",
"build": "npm run build:prod",
"dev": "npm run clean && npm run compile:dev && npm run build:dev",
"watch": "webpack --mode development --watch --devtool source-map",
"start": "webpack-dev-server --mode development --devtool source-map",
"predist": "npm run build",
"dist": "mkdirp dist && cross-zip ./build ./dist/lineupjs.zip",
"postdist": "npm run docs && cross-zip ./build/docs ../dist/lineupjs_docs.zip",
"preversion": "npm test",
"prepare": "echo 'dummy prepare since prepack has no dev dependencies'",
"prepack": "npm run clean && npm run compile && npm run build:prod",
"release:major": "release-it major",
"release:minor": "release-it minor",
"release:patch": "release-it patch",
"release:pre": "release-it --preRelease=alpha --npm.tag=next",
"release:beta": "release-it --preRelease=beta --npm.tag=next",
"cy:open": "cypress open",
"cy:start": "cypress open --config baseUrl=http://localhost:8080",
"cy:run": "cypress run",
"cy:junit": "cypress run --reporter junit --reporter-options 'mochaFile=junit-results/my-test-output.xml'"
},
"repository": {
"type": "git",
"url": "https://github.com/lineupjs/lineupjs.git"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^4.1.3",
"@types/jest": "^24.9.1",
"@types/lodash": "4.14.121",
"cache-loader": "^4.0.0",
"cross-zip-cli": "^1.0.0",
"css-loader": "^3.0.0",
"cypress": "^4.11.0",
"extract-loader": "^3.1.0",
"file-loader": "^4.0.0",
"font-awesome": "^4.7.0",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"jest": "^24.9.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.7.0",
"mkdirp": "^0.5.1",
"mocha-junit-reporter": "^1.23.3",
"node-sass": "^4.14.1",
"raw-loader": "^3.0.0",
"release-it": "^12.3.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.8.0",
"thread-loader": "^2.1.2",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.2",
"tslint": "^5.17.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-eslint-rules": "^5.4.0",
"typedoc": "~0.14.2",
"typedoc-plugin-as-member-of": "^1.0.2",
"typescript": "^3.5.2",
"url-loader": "^2.0.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/d3-color": "^1.2.2",
"@types/d3-dispatch": "^1.0.7",
"@types/d3-format": "^1.3.1",
"@types/d3-scale": "^2.1.1",
"@types/d3-scale-chromatic": "^1.3.1",
"@types/d3-time": "^1.0.10",
"@types/d3-time-format": "^2.1.1",
"@types/detect-browser": "^4.0.0",
"@types/lodash.get": "4.4.5",
"d3-color": "^1.2.3",
"d3-dispatch": "^1.0.5",
"d3-format": "^1.3.2",
"d3-scale": "^2.2.2",
"d3-scale-chromatic": "^1.3.3",
"d3-time": "^1.0.11",
"d3-time-format": "^2.1.3",
"detect-browser": "^4.5.1",
"fast-deep-equal": "^2.0.1",
"lineupengine": "^2.1.0",
"lodash.get": "^4.4.2",
"popper.js": "^1.15.0",
"reflect-metadata": "^0.1.13",
"tslib": "^1.9.0"
}
}