This repository was archived by the owner on Mar 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.98 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.98 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
{
"name": "datavisyn-scatterplot",
"version": "4.0.0",
"description": "a canvas based scatterplot implementation",
"homepage": "https://datavisyn.io",
"author": {
"name": "datavisyn GmbH",
"email": "contact@datavisyn.io",
"url": "https://datavisyn.io"
},
"contributors": [
{
"name": "Samuel Gratzl",
"email": "samuel.gratzl@datavisyn.io"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/datavisyn/datavisyn-scatterplot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/datavisyn-scatterplot.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": [
"*.scss",
"*.css"
],
"files": [
"!build/docs",
"!build/demo",
"src",
"dist"
],
"scripts": {
"clean": "rimraf dist lib",
"delete-dependencies": "rimraf node_modules",
"compile": "tsc",
"compile:watch": "tsc -w",
"postcompile": "npm run copy",
"lint": "tslint -c tslint.json -p . 'src/**/*.ts?(x)' 'tests/**/*.ts?(x)'",
"docs": "typedoc --options typedoc.json src/**.ts",
"prebuild": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"posttest": "npm run lint",
"build": "npm run clean && npm run compile",
"copy": "npm run copy-assets && npm run copy-styles",
"copy-assets": "if [ -d src/assets ]; then shx --verbose cp -R src/assets/. dist/assets/; fi",
"copy-styles": "if [ -d src/scss ]; then shx --verbose cp -R src/scss/. dist/scss/; fi",
"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",
"predist": "npm run build && npm run docs",
"dist": "mkdir lib && cd dist && tar cvzf ../lib/datavisyn-scatterplot.tar.gz *"
},
"devDependencies": {
"@types/d3-array": "^1.2.1",
"@types/d3-axis": "^1.0.10",
"@types/d3-brush": "^1.0.8",
"@types/d3-drag": "^1.2.1",
"@types/d3-format": "^1.3.0",
"@types/d3-polygon": "^1.0.6",
"@types/d3-quadtree": "^1.0.5",
"@types/d3-scale": "^2.0.1",
"@types/d3-shape": "^1.2.3",
"@types/d3-zoom": "^1.7.1",
"@types/jest": "~26.0.20",
"identity-obj-proxy": "~3.0.0",
"jest": "~26.6.3",
"jest-raw-loader": "~1.0.1",
"rimraf": "~3.0.2",
"shx": "~0.3.3",
"ts-jest": "~26.4.4",
"tslib": "~2.0.3",
"tslint": "~5.20.1",
"typedoc": "~0.19.2",
"typescript": "~3.9.7"
},
"dependencies": {
"d3-array": "^1.2.1",
"d3-axis": "^1.0.8",
"d3-brush": "^1.0.4",
"d3-drag": "^1.2.1",
"d3-format": "^1.3.0",
"d3-polygon": "^1.0.3",
"d3-quadtree": "^1.0.3",
"d3-scale": "^2.1.0",
"d3-selection": "^1.3.0",
"d3-shape": "^1.2.0",
"d3-zoom": "^1.7.1",
"eventemitter3": "^4.0.7"
}
}