-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "fluentvalidation-ts",
"version": "3.2.0",
"description": "A TypeScript-first library for building strongly-typed validation rules",
"keywords": [
"fluent",
"validation",
"validator",
"typescript",
"form",
"formik",
"fluentvalidation"
],
"homepage": "https://github.com/AlexJPotter/fluentvalidation-ts",
"main": "dist/index.js",
"author": "Alex Potter <potter.alexander.james@gmail.com>",
"license": "Apache-2.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/AlexJPotter/fluentvalidation-ts.git"
},
"bugs": {
"url": "https://github.com/AlexJPotter/fluentvalidation-ts/issues"
},
"umd:main": "dist/index.global.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "cross-env NODE_ENV=production tsup src/index.ts --dts --minify --treeshake --format cjs,esm,iife --global-name fluentvalidation --sourcemap",
"test": "tsdx test",
"lint": "tslint -c tslint.json 'src/**/*.{ts,.test.ts}'",
"prettier": "prettier --write \"{src,test}/**/*.ts\"",
"check-ts": "tsc --noEmit && tsc --noEmit --project tsconfig.test.json",
"prepare": "husky install"
},
"peerDependencies": {},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"endOfLine": "crlf"
},
"devDependencies": {
"@swc/core": "^1.3.56",
"@types/jest": "^26.0.23",
"cross-env": "^7.0.3",
"husky": "^6.0.0",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tsup": "^6.7.0",
"typescript": "^4.3.3"
}
}