-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "devpops_ext",
"version": "1.0.8",
"homepage": "https://github.com/akhilakamai/akamai_devpops_ext",
"description": "Chrome Dev Tools Extension for proxying requests and terminal access, credits to Yez extension and npm packages",
"main": "./node/index.js",
"author": {
"name": "Akhil Jayaprakash",
"email": "ajayapra@akamai.com",
"url": "https://github.com/akhilakamai/akamai_devpops_ext"
},
"license": "MIT",
"dependencies": {
"electron-prebuilt": "0.37.6",
"http-server": "0.9.0",
"open": "0.0.5",
"ps-tree": "0.0.3",
"socket.io": "0.9.17",
"spawn-args": "0.0.2",
"yargs": "4.6.0"
},
"devDependencies": {
"expect.js": "0.3.1",
"grunt": "0.4.1",
"grunt-contrib-concat": "0.3.0",
"grunt-contrib-watch": "0.4.4"
},
"keywords": [
"chrome",
"extension",
"task",
"runner"
],
"repository": {
"type": "git",
"url": ""
},
"bin": {
"devpops_ext": "./node/index.js"
},
"scripts": {
"test": "mocha ./node/tests --reporter spec",
"start": "node ./node/index.js"
}
}