-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 2.84 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
{
"name": "geo-map",
"version": "1.9.1",
"description": "A facade that abstracts over the Google and HERE map JavaScript SDKs",
"files": [
"index.js",
"index.d.ts",
"lib",
"esm"
],
"main": "index.js",
"module": "esm/index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"clean": "rimraf lib esm",
"build": "yarn build:commonjs && yarn build:esm",
"build:commonjs": "tsc --project .",
"build:esm": "tsc --project . --outdir esm --module esnext",
"test": "jest -c jest.unit.js",
"test:integration": "jest -c jest.integration.js",
"lint": "tslint --project .",
"prerelease": "git checkout master && git pull --ff-only origin master && yarn && yarn clean && yarn lint && yarn test && yarn build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "marionebl/geo-map"
},
"license": "AFL-2.0",
"bugs": {
"url": "https://github.com/marionebl/geo-map/issues"
},
"homepage": "https://github.com/marionebl/geo-map#readme",
"devDependencies": {
"@types/execa": "0.9.0",
"@types/expect-puppeteer": "3.3.1",
"@types/express": "4.16.1",
"@types/jest": "24.0.0",
"@types/jest-environment-puppeteer": "2.2.1",
"@types/jsdom": "12.2.1",
"@types/node": "10.12.21",
"@types/puppeteer": "1.12.1",
"canvas": "^2.3.1",
"execa": "1.0.0",
"express": "4.16.4",
"husky": "1.3.1",
"jest": "24.1.0",
"jest-cli": "24.1.0",
"jest-puppeteer": "3.9.0",
"jsdom": "13.2.0",
"jsdom-simulant": "1.1.2",
"lint-staged": "8.1.3",
"png.js": "0.2.1",
"prettier": "1.16.4",
"puppeteer": "1.12.2",
"rimraf": "2.6.3",
"standard-version": "4.4.0",
"ts-jest": "23.10.5",
"ts-loader": "5.3.3",
"tslint": "5.12.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.4.1",
"webpack": "4.29.1",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.1.14"
},
"dependencies": {
"@types/googlemaps": "3.30.16",
"@types/heremaps": "3.0.12",
"@types/query-string": "6.2.0",
"@types/uuid": "3.4.4",
"jest-canvas-mock": "^2.0.0-alpha.3",
"jest-environment-jsdom": "^24.0.0",
"query-string": "^6.1.0",
"tslib": "1.9.3",
"uuid": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"renovate": {
"extends": [
"config:base"
],
"semanticPrefix": "chore:",
"devDependencies": {
"automerge": true
},
"packageRules": [
{
"packagePatterns": [
"@types/"
],
"automerge": true
}
]
},
"resolutions": {
"merge": ">=1.2.1",
"jsdom": ">=13.2.0"
}
}