forked from atom-minimap/minimap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.53 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
{
"name": "minimap",
"main": "./lib/main",
"version": "4.17.0",
"private": true,
"description": "A preview of the full source code.",
"author": "Fangdun Cai <[email protected]>",
"keywords": [
"minimap",
"overview"
],
"scripts": {
"standard": "standard lib/*.js lib/**/*.js spec/**/*.js",
"esdoc": "esdoc -c esdoc.json"
},
"contributors": [
{
"name": "Fangdun Cai",
"email": "[email protected]"
},
{
"name": "Cédric Néhémie",
"email": "[email protected]"
}
],
"repository": "https://github.com/atom-minimap/minimap",
"license": "MIT",
"engines": {
"atom": ">=0.208.0"
},
"providedServices": {
"minimap": {
"description": "Exposes the minimap API to other packages",
"versions": {
"1.0.0": "provideMinimapServiceV1"
}
}
},
"dependencies": {
"atom-utils": "0.9.x",
"delegato": "1.x",
"fs-plus": "2.x",
"mixto": "1.x",
"semver": "^4.3.0",
"underscore-plus": "1.x"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"esdoc": "^0.4.0",
"esdoc-es7-plugin": "0.0.3",
"standard": "^5.1.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"advanceClock",
"atom",
"beforeEach",
"expect",
"describe",
"it",
"jasmine",
"MouseEvent",
"runs",
"spyOn",
"waits",
"waitsFor",
"waitsForPromise",
"devicePixelRatio",
"requestAnimationFrame",
"Event",
"MouseEvent"
]
}
}