forked from typestack/class-sanitizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.51 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
{
"name": "sw-class-sanitizer",
"version": "0.1.2",
"description": "Class-based sanitation in Typescript using decorators",
"private": false,
"license": "Apache-2.0",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "[email protected]"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"contributors": [
"Muhammad Fawwaz Orabi <[email protected]>",
"Youri Tolstoy <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/swanest/class-sanitizer.git"
},
"bugs": {
"url": "https://github.com/swanest/class-sanitizer/issues"
},
"tags": [
"sanitizer",
"sanitization",
"typescript",
"typescript-sanitizer"
],
"dependencies": {
"jest": "^23.0.0",
"validator": "^10.11.0"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^8.10.39",
"@types/validator": "^10.9.0",
"jest-extended": "^0.11.1",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
},
"scripts": {
"build": "rm -rf ./build && tsc",
"lint": "tslint -t prose -c tslint.json -p tsconfig.json",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupTestFrameworkScriptFile": "jest-extended"
}
}