-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
127 lines (127 loc) · 3 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
{
"name": "leaflet-webatlastile",
"version": "2.1.1",
"description": "Leaflet plugin to use Webatlas tilecache with correct attribution and apikey's. Requires only vanilla Leaflet.",
"main": "build/index.js",
"keywords": [
"maps",
"leaflet",
"client",
"tiles",
"norway"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --watch --env=jsdom",
"test:ci": "jest --env=jsdom --ci --coverage",
"start": "parcel demo/index.html",
"coverage": "jest --env=jsdom --coverage",
"build:test": "jest --env=jsdom",
"build:clean": "rimraf build",
"build": "npm run build:clean && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/Norkart/L.TileLayer.Webatlas.git"
},
"author": "Norkart AS",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Norkart/L.TileLayer.Webatlas/issues"
},
"homepage": "https://github.com/Norkart/L.TileLayer.Webatlas",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@types/jest": "^25.2.3",
"@types/leaflet": "^1.7.4",
"@types/node": "^14.17.6",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^26.6.3",
"babel-preset-nano-react-app": "^0.1.0",
"core-js": "^3.15.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-date-mock": "^1.0.8",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^10.0.0",
"jest-mock-extended": "^1.0.18",
"parcel-bundler": "^1.12.5",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.2",
"regenerator-runtime": "^0.13.9",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "^3.9.10"
},
"jest": {
"coverageReporters": [
"cobertura",
"html"
],
"collectCoverageFrom": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.tsx",
"!/node_modules/"
],
"setupFiles": [
"./setupJest.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test",
"outputName": "junit.xml"
}
]
]
},
"jest-junit": {
"suiteName": "jest tests",
"output": "test/junit.xml",
"classNameTemplate": "{classname} - {title}",
"titleTemplate": "{classname} - {title}",
"ancestorSeparator": " > ",
"usePathForSuiteName": "true"
},
"prettier": {
"singleQuote": true,
"endOfLine": "lf",
"tabWidth": 2,
"jsxSingleQuote": true,
"bracketSpacing": false,
"printWidth": 120
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"build"
],
"dependencies": {
"leaflet": "^1.7.1"
}
}