-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.27 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "halland-proxy",
"productName": "Halland Proxy",
"version": "0.3.1",
"description": "x-platform web debugging proxy and testing tool.",
"scripts": {
"test": "standard && babel-tap test/**/test-*.js",
"dev": "babel src --out-dir app --copy-files --watch --source-maps",
"start": "npm run build && electron .",
"postinstall": "electron-builder install-app-deps",
"build": "babel src --out-dir app --copy-files --source-maps",
"pack": "npm run build && build --dir",
"dist": "npm run build && build --draft"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niklasi/halland-proxy.git"
},
"keywords": [
"proxy",
"debugging",
"testing",
"http(s)"
],
"author": {
"name": "Niklas Ingholt",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/niklasi/hallandproxy/issues"
},
"homepage": "https://github.com/niklasi/hallandproxy#readme",
"main": "app/index.js",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-node-env-inline": "^6.8.0",
"babel-preset-es2016-node5": "^1.1.2",
"babel-preset-react": "^6.16.0",
"babel-tap": "^5.0.0",
"devtron": "^1.4.0",
"electron": "^1.7.5",
"electron-builder": "^19.22.1",
"enzyme": "^2.5.1",
"react-addons-test-utils": "^15.6.0",
"request": "^2.75.0",
"standard": "^10.0.0",
"tap": "^7.1.2"
},
"dependencies": {
"async": "^2.5.0",
"bytewise": "^1.1.0",
"cert-installer": "^1.0.0",
"connect": "^3.6.2",
"debug": "^2.6.8",
"hexer": "^1.5.0",
"ip": "^1.1.3",
"leveldown": "^1.7.2",
"levelup": "^1.3.8",
"material-ui": "^0.15.4",
"material-ui-chip-input": "^0.15.0",
"memdown": "^1.2.2",
"mkdirp": "^0.5.1",
"node-forge": "^0.6.46",
"present": "^1.0.0",
"pretty-bytes": "^4.0.2",
"pretty-ms": "^3.0.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-addons-perf": "^15.3.2",
"react-addons-pure-render-mixin": "^15.6.0",
"react-addons-shallow-compare": "^15.6.0",
"react-dom": "^15.6.1",
"react-highlight": "^0.9.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-tap-event-plugin": "^2.0.0",
"react-ui": "^0.6.2",
"react-virtualized": "^8.5.1",
"redux": "^3.7.1",
"redux-logger": "^2.4.0",
"redux-thunk": "^1.0.3",
"shell-env": "^0.3.0",
"through2": "^2.0.1",
"uuid": "^3.1.0"
},
"build": {
"files": [
"app/",
"src/",
"node_modules",
"!**/node_modules/*/{README.md,README,readme.md,readme,test}",
"!**/node_modules/.bin",
"!**/*.{o,hprof,orig,pyc,pyo,rbc}",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db}"
],
"asar": false,
"appId": "com.ingholt.hallandproxy",
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {},
"linux": {
"target": [
"deb",
"AppImage"
]
}
},
"optionalDependencies": {
"7zip-bin": "^2.2.3"
}
}