Skip to content

Commit 9cb6429

Browse files
authored
Merge pull request #806 from UziTech/update-deps
fix: update deps
2 parents c1b2cd3 + a3de139 commit 9cb6429

File tree

5 files changed

+1278
-1248
lines changed

5 files changed

+1278
-1248
lines changed

package.json

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,10 @@
11
{
22
"name": "minimap",
3-
"main": "./dist/main.js",
43
"version": "4.40.0",
54
"description": "A preview of the full source code.",
5+
"repository": "https://github.com/atom-minimap/minimap",
6+
"license": "MIT",
67
"author": "Fangdun Cai <[email protected]>, Amin Yahyaabadi <[email protected]>",
7-
"keywords": [
8-
"minimap",
9-
"overview"
10-
],
11-
"scripts": {
12-
"format": "prettier --write .",
13-
"test.format": "prettier . --check",
14-
"lint": "eslint . --fix",
15-
"test.lint": "eslint .",
16-
"clean": "shx rm -rf dist .parcel-cache",
17-
"dev": "cross-env NODE_ENV=development parcel watch --target main ./lib/main.js",
18-
"build.test": "npm run clean && cross-env NODE_ENV=test parcel build --target main ./lib/main.js",
19-
"build": "cross-env NODE_ENV=production parcel build --target main ./lib/main.js",
20-
"build-commit": "npm run clean && build-commit -o dist",
21-
"esdoc": "esdoc -c esdoc.json",
22-
"test": "atom --test spec",
23-
"bump": "ncu -u",
24-
"prepare": "npm run build"
25-
},
26-
"prettier": "prettier-config-atomic",
278
"contributors": [
289
{
2910
"name": "Fangdun Cai",
@@ -38,51 +19,67 @@
3819
"email": "[email protected]"
3920
}
4021
],
41-
"repository": "https://github.com/atom-minimap/minimap",
42-
"license": "MIT",
43-
"engines": {
44-
"atom": ">=1.52.0",
45-
"electron": ">=6.0.0"
46-
},
47-
"providedServices": {
48-
"minimap": {
49-
"description": "Exposes the minimap API to other packages",
50-
"versions": {
51-
"1.0.0": "provideMinimapServiceV1"
52-
}
53-
}
22+
"main": "./dist/main.js",
23+
"scripts": {
24+
"build": "cross-env NODE_ENV=production parcel build --target main ./lib/main.js",
25+
"build-commit": "npm run clean && build-commit -o dist",
26+
"build.test": "npm run clean && cross-env NODE_ENV=test parcel build --target main ./lib/main.js",
27+
"bump": "ncu -u",
28+
"clean": "shx rm -rf dist .parcel-cache",
29+
"dev": "cross-env NODE_ENV=development parcel watch --target main ./lib/main.js",
30+
"esdoc": "esdoc -c esdoc.json",
31+
"format": "prettier --write .",
32+
"lint": "eslint . --fix",
33+
"prepare": "npm run build",
34+
"test": "atom --test spec",
35+
"test.format": "prettier . --check",
36+
"test.lint": "eslint ."
5437
},
55-
"viewProviders": [
56-
"minimapViewProvider"
57-
],
58-
"activationHooks": [
59-
"core:loaded-shell-environment"
60-
],
38+
"prettier": "prettier-config-atomic",
6139
"dependencies": {
62-
"atom-ide-base": "^3.2.0",
40+
"atom-ide-base": "^3.3.0",
6341
"atom-utils-plus": "^0.11.0",
6442
"delegato": "^1.0.0",
65-
"element-resize-detector": "^1.2.3",
43+
"element-resize-detector": "^1.2.4",
6644
"fs-plus": "^3.1.1",
6745
"mixto": "^1.0.0"
6846
},
6947
"devDependencies": {
70-
"@types/atom": "^1.40.10",
71-
"@types/jasmine": "3.7.7",
48+
"@types/atom": "^1.40.11",
49+
"@types/jasmine": "3.10.3",
7250
"build-commit": "^0.1.4",
7351
"cross-env": "^7.0.3",
7452
"esdoc": "^1.1.0",
7553
"esdoc-es7-plugin": "^0.0.3",
76-
"eslint": "^7.29.0",
77-
"eslint-config-atomic": "^1.16.1",
54+
"eslint": "^7.32.0",
55+
"eslint-config-atomic": "^1.17.0",
7856
"jasmine-expect": "^5.0.0",
7957
"npm-check-updates": "latest",
8058
"parcel": "2.0.0-nightly.760",
81-
"prettier-config-atomic": "^2.0.5",
82-
"shx": "^0.3.3",
59+
"prettier-config-atomic": "^3.0.5",
60+
"shx": "^0.3.4",
8361
"terser-config-atomic": "^0.1.1",
8462
"underscore-plus": "^1.7.0"
8563
},
64+
"engines": {
65+
"atom": ">=1.52.0",
66+
"electron": ">=6.0.0"
67+
},
68+
"keywords": [
69+
"minimap",
70+
"overview"
71+
],
72+
"activationHooks": [
73+
"core:loaded-shell-environment"
74+
],
75+
"providedServices": {
76+
"minimap": {
77+
"description": "Exposes the minimap API to other packages",
78+
"versions": {
79+
"1.0.0": "provideMinimapServiceV1"
80+
}
81+
}
82+
},
8683
"targets": {
8784
"main": {
8885
"context": "electron-renderer",
@@ -94,5 +91,8 @@
9491
"outputFormat": "commonjs",
9592
"isLibrary": true
9693
}
97-
}
94+
},
95+
"viewProviders": [
96+
"minimapViewProvider"
97+
]
9898
}

0 commit comments

Comments
 (0)