-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.78 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
{
"name": "@redhat-customer-portal/preset-chrome",
"version": "0.0.1-alpha.8",
"description": "The preset of Red Hat Customer Portal",
"main": "./dist/index.js",
"types": "./@types/index.d.ts",
"files": [
"dist",
"@types"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"build": "tsc --build tsconfig.production.json",
"pretest": "npm run lint",
"test": "nyc mocha",
"lint": "eslint --ext .ts ./src",
"clean": "rimraf ./dist ./@types"
},
"keywords": [],
"author": "Kun Yan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/redhataccess/preset-chrome.git"
},
"devDependencies": {
"@types/chai": "4.2.22",
"@types/express": "4.17.13",
"@types/mocha": "9.0.0",
"@types/node": "15.14.1",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"chai": "4.3.4",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"express": "4.17.1",
"husky": "7.0.4",
"lint-staged": "11.2.3",
"mocha": "9.1.3",
"nyc": "15.1.0",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"ts-node": "10.4.0",
"typescript": "4.4.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write"
]
},
"mocha": {
"extension": [
"ts"
],
"spec": "test/**/*.spec.ts",
"require": "ts-node/register"
},
"nyc": {
"include": [
"src"
],
"exclude": [
"**/*.d.ts"
],
"reporter": "lcov"
},
"dependencies": {
"http-proxy-middleware": "^2.0.0",
"https-proxy-agent": "^5.0.0",
"server-side-include": "0.0.1-alpha.8"
}
}