This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
70 lines (70 loc) · 1.84 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
{
"name": "edge-diagnostics-adapter",
"version": "0.6.0-unsigned",
"description": "Microsoft Edge Diagnostics Adapter",
"main": "out/src/edgeAdapter.js",
"files": [
"out/src",
"redistributable",
"scripts",
"tsconfig.json"
],
"keywords": [
"edge",
"diagnostics",
"devtools",
"browser"
],
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/edge-diagnostics-adapter.git"
},
"dependencies": {
"node-pre-gyp": "^0.6.38",
"regedit": "^2.2.7",
"ws": "3.2.0",
"yargs": "^9.0.1"
},
"devDependencies": {
"@types/node": "^8.0.32",
"@types/ws": "^3.0.2",
"@types/yargs": "^8.0.2",
"cpx": "^1.5.0",
"gulp": "^3.9.1",
"gulp-mocha": "^4.3.1",
"gulp-msbuild": "^0.5.3",
"gulp-sequence": "^0.4.6",
"gulp-util": "^3.0.8",
"nan": "^2.7.0",
"node-gyp": "^3.6.2",
"rimraf": "^2.6.2",
"tslint": "^5.7.0",
"typescript": "2.5.3"
},
"binary": {
"module_name": "edge-diagnostics-adapter",
"module_path": "out/",
"host": "https://github.com/Microsoft/edge-diagnostics-adapter/releases/download/",
"remote_path": "v{version}"
},
"cpu": [
"x64",
"ia32"
],
"os": [
"win32"
],
"scripts": {
"copy:static": "cpx \"./src/**/{!(*.ts),.!(ts)}\" out/src",
"build": "npm run clean && npm run lint && npm run build:ts && npm run copy:static && prebuild.cmd && npm run build:native",
"build:native": "npm config set msvs_version 2015 && gulp buildnative",
"build:ts": "tsc",
"clean": "rimraf out",
"install": "node-pre-gyp install --fallback-to-build",
"lint": "tslint /src/**/*.ts",
"postinstall": "node scripts/postinstall.js",
"watch:ts": "tsc --watch"
}
}