-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.07 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
{
"name": "mandle",
"description": "A typesafe functional validation library",
"author": "Harry G <harry@grumbar.me>",
"version": "0.0.1-semantically-versioned",
"main": "dist/index.js",
"license": "MIT",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/harrygr/mandle"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && tsc",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"keywords": [
"data validation",
"validator",
"validate",
"validation",
"data"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"parser": "typescript"
}
}