-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.11 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
{
"name": "minimap-lens",
"main": "./lib/minimap-lens",
"version": "0.8.2",
"description": "Show code lens on hovering to Minimap.",
"keywords": [
"minimap",
"lens",
"lens-mode"
],
"repository": "https://github.com/iyonaga/minimap-lens",
"license": "MIT",
"scripts": {
"lint": "eslint '{lib,spec}/**/*.js' --format codeframe",
"lint:fix": "prettier-eslint --write '{lib,spec}/**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"consumedServices": {
"minimap": {
"versions": {
"1.0.0": "consumeMinimapServiceV1"
}
}
},
"activationHooks": [
"core:loaded-shell-environment"
],
"dependencies": {},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.4.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"prettier-eslint-cli": "^4.7.1"
}
}