|
1 | 1 | { |
2 | 2 | "name": "minimap", |
3 | | - "main": "./dist/main.js", |
4 | 3 | "version": "4.40.0", |
5 | 4 | "description": "A preview of the full source code.", |
| 5 | + "repository": "https://github.com/atom-minimap/minimap", |
| 6 | + "license": "MIT", |
6 | 7 | "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", |
27 | 8 | "contributors": [ |
28 | 9 | { |
29 | 10 | "name": "Fangdun Cai", |
|
38 | 19 | |
39 | 20 | } |
40 | 21 | ], |
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 ." |
54 | 37 | }, |
55 | | - "viewProviders": [ |
56 | | - "minimapViewProvider" |
57 | | - ], |
58 | | - "activationHooks": [ |
59 | | - "core:loaded-shell-environment" |
60 | | - ], |
| 38 | + "prettier": "prettier-config-atomic", |
61 | 39 | "dependencies": { |
62 | | - "atom-ide-base": "^3.2.0", |
| 40 | + "atom-ide-base": "^3.3.0", |
63 | 41 | "atom-utils-plus": "^0.11.0", |
64 | 42 | "delegato": "^1.0.0", |
65 | | - "element-resize-detector": "^1.2.3", |
| 43 | + "element-resize-detector": "^1.2.4", |
66 | 44 | "fs-plus": "^3.1.1", |
67 | 45 | "mixto": "^1.0.0" |
68 | 46 | }, |
69 | 47 | "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", |
72 | 50 | "build-commit": "^0.1.4", |
73 | 51 | "cross-env": "^7.0.3", |
74 | 52 | "esdoc": "^1.1.0", |
75 | 53 | "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", |
78 | 56 | "jasmine-expect": "^5.0.0", |
79 | 57 | "npm-check-updates": "latest", |
80 | 58 | "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", |
83 | 61 | "terser-config-atomic": "^0.1.1", |
84 | 62 | "underscore-plus": "^1.7.0" |
85 | 63 | }, |
| 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 | + }, |
86 | 83 | "targets": { |
87 | 84 | "main": { |
88 | 85 | "context": "electron-renderer", |
|
94 | 91 | "outputFormat": "commonjs", |
95 | 92 | "isLibrary": true |
96 | 93 | } |
97 | | - } |
| 94 | + }, |
| 95 | + "viewProviders": [ |
| 96 | + "minimapViewProvider" |
| 97 | + ] |
98 | 98 | } |
0 commit comments