-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.2 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
{
"name": "@equinor/videx-map",
"version": "1.14.7",
"description": "Component for Pixi-overlay in Leaflet.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"start": "storybook dev",
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepub": "npm run build",
"pub": "npm publish --access=public",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"lint:ci": "eslint --ext .js,.jsx,.ts,.tsx src --color --format table --quiet",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx src --fix",
"predocs": "rimraf docs",
"docs": "typedoc --out docs src",
"postdocs": "copyfiles images/* docs && copyfiles .nojekyll docs",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/equinor/videx-map.git"
},
"keywords": [
"videx",
"leaflet",
"pixi.js",
"typescript"
],
"author": "Tom Kristian Tjemsland",
"license": "MIT",
"bugs": {
"url": "https://github.com/equinor/videx-map/issues"
},
"homepage": "https://github.com/equinor/videx-map#readme",
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@equinor/videx-storybook-input": "^1.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/html": "^8.2.9",
"@storybook/html-webpack5": "^8.2.9",
"@types/babel__core": "^7.20.5",
"@types/d3-color": "^3.1.3",
"@types/d3-scale-chromatic": "^3.0.3",
"@types/d3-selection": "^3.0.10",
"@types/earcut": "^2.1.1",
"@types/geojson": "^7946.0.3",
"@types/jest": "^29.5.11",
"@types/leaflet": "^1.5.17",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"babel-loader": "^9.1.3",
"copyfiles": "^2.3.0",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.2.0",
"jest-environment-jsdom": "^29.7.0",
"leaflet": "^1.7.1",
"leaflet-pixi-overlay": "^1.9.4",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"rollup": "^3.29.4",
"simplex-noise": "^2.4.0",
"storybook": "^8.3.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.8.1",
"tslib": "^2.6.1",
"typedoc": "^0.25.4",
"typescript": "^5.3.3"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)test)\\.ts$",
"setupFiles": [
"jest-canvas-mock"
]
},
"lint-staged": {
"*.ts": [
"npm run lint:ci"
]
},
"dependencies": {
"@equinor/videx-linear-algebra": "^1.0.7",
"@equinor/videx-math": "^1.1.0",
"@equinor/videx-vector2": "^1.0.44",
"d3-color": "^3.1.0",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"earcut": "^2.2.4",
"pixi.js": "^7.3.2",
"uuid": "^8.3.2"
}
}