forked from lineupjs/lineupjs
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
144 lines (144 loc) · 4.77 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
{
"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": "3.1.7",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]"
},
"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/datavisyn/lineupjs/issues"
},
"homepage": "https://lineup.js.org",
"main": "build/LineUpJS.js",
"jsnext:main": "build/LineUpJS.js",
"module": "build/LineUpJS.js",
"unpkg": "build/LineUpJS.js",
"types": "src/index.d.ts",
"sideEffects": [
"*.scss",
"*.css"
],
"browserslist": [
"Firefox >= 57",
"Firefox ESR",
"Edge >= 16",
"Chrome >= 64"
],
"files": [
"build",
"!build/docs",
"!build/demo",
"src/**/*.js",
"src/**/*.d.ts",
"src/assets",
"src/**/*.scss",
"!src/**/__tests__",
"!src/**/__mocks__"
],
"scripts": {
"clean": "rimraf build dist && npm run clean:compile",
"clean:compile": "rimraf src/**/*.map src/**/*.js src/**/*.d.ts tests/**/*.js tests/**/*.map tests/**/*.d.ts demo/**/*.js demo/**/*.map demo/**/*.d.ts",
"compile": "tsc",
"compile:dev": "tsc -p ./tsconfig.dev.json",
"lint": "tslint --project tsconfig.json -c tslint.json && stylelint src/**/*.scss",
"docs": "npm run clean:compile && typedoc --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 && (node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test)",
"build:dev": "webpack --mode development --devtool source-map",
"build:prod": "webpack --mode production --devtool source-map",
"build": "npm run build:prod",
"watch": "webpack --mode development --watch --devtool source-map",
"start": "webpack-dev-server --mode development --devtool source-map",
"predist": "npm run build && npm run docs",
"dist": "mkdirp dist && cd build && tar cvzf ../dist/lineupjs.tar.gz --exclude \"docs\" * && cd ..",
"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": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:pre": "npm version prerelease && npm publish --tag=next && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/lineupjs.git"
},
"devDependencies": {
"@types/d3-array": "^1.2.1",
"@types/d3-color": "^1.2.1",
"@types/d3-dispatch": "^1.0.6",
"@types/d3-scale": "^2.0.1",
"@types/d3-scale-chromatic": "^1.2.0",
"@types/d3-time": "^1.0.8",
"@types/d3-time-format": "^2.1.0",
"@types/detect-browser": "^2.0.1",
"@types/jest": "^23.3.1",
"cache-loader": "^1.2.2",
"css-loader": "^1.0.0",
"d3-array": "^1.2.1",
"d3-color": "^1.2.0",
"d3-dispatch": "^1.0.3",
"d3-format": "^1.3.0",
"d3-scale": "^2.1.0",
"d3-scale-chromatic": "^1.3.0",
"d3-time": "^1.0.8",
"d3-time-format": "^2.1.1",
"detect-browser": "^3.0.0",
"extract-loader": "^2.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"fast-deep-equal": "^2.0.1",
"file-loader": "^1.1.11",
"font-awesome": "^4.7.0",
"fork-ts-checker-webpack-plugin": "^0.4.3",
"jest": "^23.5.0",
"json-loader": "^0.5.7",
"mkdirp": "^0.5.1",
"node-sass": "^4.9.2",
"raw-loader": "^1.0.0-beta.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"stylelint": "^9.4.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.2.0",
"thread-loader": "^1.2.0",
"ts-jest": "^23.1.4",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"tslint-consistent-codestyle": "^1.13.3",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.11.1",
"typedoc-plugin-as-member-of": "^1.0.2",
"typescript": "~3.0.1",
"url-loader": "^1.0.1",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@types/d3-format": "^1.3.0",
"popper.js": "^1.14.3",
"lineupengine": "^1.1.2",
"reflect-metadata": "^0.1.12"
}
}