forked from hollowverse-archive/class-sanitizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.08 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@hollowverse/class-sanitizer",
"private": false,
"version": "0.1.2",
"description": "Class-based sanitization in TypeScript using decorators",
"license": "Apache-2.0",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "pleerock.me@gmail.com"
},
"contributors": [
"Muhammad Fawwaz Orabi <mfawwaz93@gmail.com>"
],
"jest": {
"globals": {
"ts-jest": {
"skipBabel": true
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "https://github.com/hollowverse/class-sanitizer.git"
},
"bugs": {
"url": "https://github.com/hollowverse/class-sanitizer/issues"
},
"tags": [
"sanitizer",
"sanitization",
"typescript",
"typescript-sanitizer"
],
"dependencies": {
"validator": "^9.2.0"
},
"lint-staged": {
"**/*.md": [
"prettier --write",
"git add"
],
"**/*.{j,t}s{x,}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "run-s lint-staged validate-filenames",
"pre-push": "yarn test",
"post-merge": "yarnhook",
"post-checkout": "yarnhook",
"post-rewrite": "yarnhook"
}
},
"devDependencies": {
"@hollowverse/common": "hollowverse/common",
"@hollowverse/validate-filenames": "^1.3.4",
"@types/jest": "^22.0.1",
"@types/node": "^7.0.5",
"@types/validator": "^6.3.0",
"del-cli": "^1.1.0",
"expect-more-jest": "^1.0.1",
"husky": "^0.15.0-rc.3",
"jest": "^22.1.4",
"lint-staged": "^6.0.1",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"reflect-metadata": "^0.1.12",
"ts-jest": "^22.0.1",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.6.0",
"tslint-microsoft-contrib": "^5.0.2",
"tslint-stylish": "^2.1.0-beta",
"typescript": "^2.6.2",
"yarnhook": "^0.1.1",
"babel-eslint": "^8.0.2",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"lodash": "^4.17.4",
"nodemon": "^1.11.0",
"shelljs": "^0.7.8",
"stylelint": "^8.2.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-no-unsupported-browser-features": "^1.0.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-react": "^3.2.0"
},
"scripts": {
"clean": "del-cli build",
"pretest": "run-p clean",
"lint-ts": "tslint --exclude 'node_modules' --project tsconfig.json",
"jest": "jest",
"check-ts": "tsc --noEmit",
"test": "run-p --aggregate-output check-ts lint-ts jest",
"dev": "jest --watch",
"build-ts": "tsc --project src",
"build": "run-s clean build-ts",
"lint-staged": "lint-staged",
"validate-filenames": "validate-filenames --config commonconfig.js"
}
}