-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
70 lines (70 loc) · 1.68 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": "proxrox",
"version": "2.1.1",
"description": "Proxy services, combine origins, use SSI and more during development",
"keywords": [
"nginx",
"proxy",
"same-origin policy",
"sop",
"cross domain ajax",
"webserver",
"secure cookies",
"http2"
],
"os": [
"darwin",
"linux"
],
"main": "dist/index.js",
"files": [
"dist",
"templates"
],
"bin": {
"proxrox": "dist/bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bripkens/proxrox.git"
},
"scripts": {
"test": "npm run verify:unit-test && npm run verify:lint",
"verify:unit-test": "jest",
"verify:lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:ts && npm run build:permissions",
"build:ts": "tsc",
"build:permissions": "chmod a+x dist/bin/index.js",
"prepublishOnly": "npm run test && npm run build"
},
"engines": {
"node": ">=0.14"
},
"author": "Ben Blackmore <[email protected]>",
"license": "MIT",
"dependencies": {
"colors": "1.4.0",
"commander": "^8.3.0",
"ejs": "^3.1.6",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/diff": "^5.0.2",
"@types/ejs": "^3.1.0",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-jest": "^27.4.6",
"diff": "^5.0.0",
"eslint": "^8.6.0",
"jest": "^27.4.7",
"typescript": "^4.5.4",
"uuid": "^8.3.2"
}
}