forked from hollowverse-archive/class-sanitizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.34 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
{
"name": "@neuralegion/class-sanitizer",
"private": false,
"version": "0.0.0",
"description": "Class-based sanitization in TypeScript using decorators",
"license": "Apache-2.0",
"readmeFilename": "README.md",
"author": {
"name": "Artem Derevnjuk",
"email": "[email protected]"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{ts,js,json,md}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"keywords": [
"sanitize",
"sanitization",
"xss",
"sanitizer",
"purify",
"secure",
"security"
],
"repository": {
"type": "git",
"url": "https://github.com/NeuraLegion/class-sanitizer.git"
},
"bugs": {
"url": "https://github.com/NeuraLegion/class-sanitizer/issues"
},
"homepage": "https://github.com/NeuraLegion/class-sanitizer#readme",
"tags": [
"sanitizer",
"sanitization",
"typescript",
"typescript-sanitizer"
],
"dependencies": {
"reflect-metadata": "~0.1.13",
"sanitizer": "~0.1.3",
"validator": "~13.7.0",
"tslib": "~2.3.1"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^27.4.0",
"@types/node": "~14.18.10",
"@types/sanitizer": "0.0.28",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"del-cli": "^4.0.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"expect-more-jest": "^5.4.0",
"husky": "^7.0.4",
"is-ci": "~3.0.1",
"jest": "^27.5.1",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"semantic-release": "~19.0.2",
"ts-jest": "^27.1.3",
"typescript": "~4.5.5"
},
"scripts": {
"semantic-release": "semantic-release",
"husky": "husky",
"lint": "eslint -c .eslintrc.json src",
"format": "prettier --check src",
"clean": "del-cli dist",
"test": "jest",
"dev": "npm run test -- --watch",
"tsc": "tsc -p tsconfig.build.json",
"build": "npm run clean && npm run tsc",
"prepare": "is-ci || husky install"
}
}