-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "minimap-selection",
"main": "./lib/minimap-selection",
"version": "4.5.5",
"description": "Display the buffer's selections on the minimap",
"repository": "https://github.com/atom-minimap/minimap-selection",
"license": "MIT",
"engines": {
"atom": ">=1.20.0"
},
"scripts": {
"test": "atom --test spec",
"lint": "eslint ."
},
"atomTestRunner": "./spec/runner.js",
"package-deps": [
{
"name": "minimap"
}
],
"dependencies": {
"atom-package-deps": "^8.0.0"
},
"devDependencies": {
"@semantic-release/apm-config": "^8.0.0",
"atom-jasmine3-test-runner": "^5.2.13",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.31.1",
"semantic-release": "^19.0.5"
},
"consumedServices": {
"minimap": {
"versions": {
"1.0.0": "consumeMinimapServiceV1"
}
}
},
"activationHooks": [
"core:loaded-shell-environment"
]
}