-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 905 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 905 Bytes
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
{
"name": "debugger",
"main": "./lib/main",
"author": "philippvr",
"version": "0.0.0",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"scripts": {
"test": "(apm test) && (flow check) && (eslint . )"
},
"dependencies": {
"atom-package-deps": "^4.3.0",
"season": "^5.2.0",
"underscore-plus": "^1.0.0"
},
"devDependencies": {
"@flow-atom/atom": "^1.8.0-rev.0",
"eslint-config-steelbrain": "^1.0.4",
"flow-bin": "^0.30.0",
"jasmine-fix": "^1.0.1"
},
"package-deps": [
"debugger-ui-default"
],
"providedServices": {
"debugger-event-defs": {
"versions": {
"0.1.0": "provideEventDefs"
}
}
},
"consumedServices": {
"debugger-ui": {
"versions": {
"^0.1.0": "consumeView"
}
},
"debugger": {
"versions": {
"^0.1.0": "consumeDebugger"
}
}
}
}