-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
73 lines (73 loc) · 2.05 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
{
"name": "spandx",
"version": "3.0.0",
"description": "Develop locally, proxy to prod, browser-sync, inject Portal Chrome.",
"main": "app/spandx.js",
"bin": "app/cli.js",
"files": [
"app",
"spandx.config.js"
],
"scripts": {
"test": "jasmine spec/spandx/*.js",
"start": "node app/spandx.js",
"dev": "npx nodemon spandx.js",
"debug": "node-debug spandx.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"update-readme-toc": "markdown-toc -i README.md",
"prepare": "husky install"
},
"lint-staged": {
"{app,spec}/**/*.{js,json}": [
"prettier --write"
],
"examples/**/*.{js,json}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/redhataccess/spandx.git"
},
"keywords": [
"proxy",
"local"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/redhataccess/spandx/issues"
},
"homepage": "https://github.com/redhataccess/spandx#readme",
"dependencies": {
"browser-sync": "2.25.0",
"connect": "3.7.0",
"conventional-changelog-cli": "2.1.1",
"finalhandler": "1.2.0",
"got": "11.8.3",
"hostile": "1.3.3",
"http-proxy": "1.18.1",
"https-proxy-agent": "7.0.0",
"inquirer": "8.2.6",
"lodash": "4.17.21",
"nodesi": "1.17.0",
"opn": "5.5.0",
"porty": "3.1.1",
"print-colors": "1.0.1",
"proxy-agent": "6.2.1",
"serve-static": "1.15.0",
"transformer-proxy": "0.3.5",
"yargs": "17.4.1"
},
"devDependencies": {
"frisby": "2.1.3",
"http-server": "14.1.0",
"husky": "7.0.4",
"jasmine": "3.9.0",
"jasmine-spec-reporter": "7.0.0",
"lint-staged": "13.2.2",
"markdown-toc": "1.2.0",
"nodemon": "2.0.22",
"opn": "5.5.0",
"prettier": "2.3.1"
}
}