forked from atom-minimap/minimap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.6 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
{
"name": "minimap",
"version": "4.40.1",
"description": "A preview of the full source code.",
"repository": "https://github.com/atom-minimap/minimap",
"license": "MIT",
"author": "Fangdun Cai <cfddream@gmail.com>, Amin Yahyaabadi <aminyahyaabadi74@gmail.com>",
"contributors": [
{
"name": "Fangdun Cai",
"email": "cfddream@gmail.com"
},
{
"name": "Cédric Néhémie",
"email": "cedric.nehemie@gmail.com"
},
{
"name": "Amin Yahyaabadi",
"email": "aminyahyaabadi74@gmail.com"
}
],
"main": "./dist/main.js",
"scripts": {
"build": "cross-env NODE_ENV=production parcel build --target main ./lib/main.js",
"build-commit": "npm run clean && build-commit -o dist",
"build.test": "npm run clean && cross-env NODE_ENV=test parcel build --target main ./lib/main.js",
"bump": "ncu -u",
"clean": "shx rm -rf dist .parcel-cache",
"dev": "cross-env NODE_ENV=development parcel watch --target main ./lib/main.js",
"esdoc": "esdoc -c esdoc.json",
"format": "prettier --write .",
"lint": "eslint . --fix",
"prepare": "npm run build",
"test": "atom --test spec",
"test.format": "prettier . --check",
"test.lint": "eslint ."
},
"prettier": "prettier-config-atomic",
"dependencies": {
"atom-ide-base": "^3.3.0",
"atom-utils-plus": "^0.11.0",
"delegato": "^1.0.0",
"element-resize-detector": "^1.2.4",
"fs-plus": "^3.1.1",
"mixto": "^1.0.0"
},
"devDependencies": {
"@types/atom": "^1.40.11",
"@types/jasmine": "3.10.3",
"build-commit": "^0.1.4",
"cross-env": "^7.0.3",
"esdoc": "^1.1.0",
"esdoc-es7-plugin": "^0.0.3",
"eslint": "^7.32.0",
"eslint-config-atomic": "^1.17.0",
"jasmine-expect": "^5.0.0",
"npm-check-updates": "latest",
"parcel": "2.0.0-nightly.760",
"prettier-config-atomic": "^3.0.5",
"shx": "^0.3.4",
"terser-config-atomic": "^0.1.1",
"underscore-plus": "^1.7.0"
},
"engines": {
"atom": ">=1.52.0",
"electron": ">=6.0.0"
},
"keywords": [
"minimap",
"overview"
],
"activationHooks": [
"core:loaded-shell-environment"
],
"providedServices": {
"minimap": {
"description": "Exposes the minimap API to other packages",
"versions": {
"1.0.0": "provideMinimapServiceV1"
}
}
},
"targets": {
"main": {
"context": "electron-renderer",
"includeNodeModules": {
"atom": false,
"electron": false,
"fs-plus": false
},
"outputFormat": "commonjs",
"isLibrary": true
}
},
"viewProviders": [
"minimapViewProvider"
]
}