-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.02 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
{
"name": "@mediamonks/self-xss-console-banner",
"version": "0.0.5",
"description": "Self XSS warning module",
"main": "dist/index.js",
"files": [
"dist",
"self-xss-console-banner.webp"
],
"type": "module",
"scripts": {
"dev": "open-cli http://localhost:8400 && run-s compile:ts && run-p watch:ts serve:*",
"lint": "eslint --ext .ts src",
"lint:fix": "npm run lint -- --fix",
"watch:ts": "tsc -w -p ./tsconfig.watch.json",
"compile:ts": "tsc -p ./tsconfig.json",
"serve:example": "http-server -p 8400 -c-1 ./example -s",
"serve:dist": "http-server -p 8401 --cors -c-1 dist -s",
"build": "tsc -b --clean ./tsconfig.build.json; tsc -b ./tsconfig.build.json",
"prettier": "prettier --write 'src/**/*.ts'",
"postinstall": "husky install"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/mediamonks/self-xss-console-banner#readme",
"bugs": {
"url": "https://github.com/mediamonks/self-xss-console-banner/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mediamonks/self-xss-console-banner.git"
},
"keywords": [
"self-xss",
"self-xss banner",
"self-xss console banner",
"xss"
],
"eslintConfig": {
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"@mediamonks/eslint-config",
"@mediamonks/eslint-config-typescript"
],
"rules": {
"no-console": "off"
}
}
]
},
"author": "frontend.monks",
"license": "MIT",
"devDependencies": {
"@mediamonks/eslint-config": "^2.0.7",
"@mediamonks/eslint-config-typescript": "^1.0.9",
"@mediamonks/prettier-config": "^1.0.1",
"@types/node": "^20.1.0",
"eslint": "^8.33.0",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"lint-staged": "^15.0.2",
"npm-run-all": "^4.1.5",
"open-cli": "^7.1.0",
"prettier": "^3.0.2",
"typescript": "^5.0.2"
}
}