-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 960 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
{
"name": "xatom-debug-nodejs",
"main": "./lib/main",
"version": "0.9.3",
"author": "Williams Medina <[email protected]>",
"description": "NodeJS Debugger Plugin for xatom-debug",
"keywords": [],
"repository": "https://github.com/xatom-plugins/xatom-debug-nodejs",
"license": "MIT",
"scripts": {
"start": "npm run build -- -w",
"build": "tsc",
"prepublish": "npm run build"
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"consumedServices": {
"xatom-debug": {
"versions": {
"1.0.0": "registerPlugin"
}
}
},
"dependencies": {
"atom-package-deps": "^4.6.0",
"chokidar": "^1.6.1",
"lodash": "^4.17.4",
"xatom-debug-chrome-base": "^0.2.12"
},
"package-deps": [
"xatom-debug"
],
"devDependencies": {
"@types/atom": "0.0.36",
"@types/chokidar": "^1.6.0",
"@types/lodash": "^4.14.62",
"@types/node": "^7.0.8",
"typescript": "^2.3.0"
}
}