-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 992 Bytes
/
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": "debugger-toolbar",
"main": "./lib/main",
"version": "0.0.0",
"description": "A toolbar for debugging",
"keywords": [
"debugging",
"toolbar"
],
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-package-deps": "^4.3.0"
},
"devDependencies": {
"eslint": "^3.10.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"webfont": "^7.0.0"
},
"package-deps": [
"debugger"
],
"consumedServices": {
"tool-bar": {
"versions": {
"^0 || ^1": "consumeToolBar"
}
}
},
"providedServices": {
"debugger-ui": {
"description": "A toolbar for debugger",
"versions": {
"0.1.0": "provideView"
}
}
},
"scripts": {
"prepublish": "webfont -d resources/fonts -s styles -t css -f debug-icons -p 'atom://debugger-toolbar/resources/fonts/' resources/debug-icons/*.svg"
}
}