-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 1.89 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
{
"name": "favalid",
"sideEffects": false,
"description": "validator framework",
"version": "0.9.1",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"repository": "akito0107/favalid",
"module": "lib/esm/main.js",
"author": {
"name": "Akito Ito",
"email": "akito0107@gmail.com"
},
"license": "apache-2.0",
"scripts": {
"test": "jest ./src",
"test:watch": "jest --watch ./src",
"test:cover": "jest --coverage ./src",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint --fix ./src/**/*.ts",
"clean": "rimraf ./lib/*",
"build": "yarn clean && tsc -p es5 --outDir lib && tsc -p esm",
"docs": "esdoc"
},
"dependencies": {
"locale-id": "^1.0.2",
"locale2": "^2.2.0"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/power-assert": "1.5.12",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"bundlesize": "0.18.2",
"esdoc": "1.1.0",
"esdoc-importpath-plugin": "1.0.2",
"esdoc-standard-plugin": "1.0.0",
"esdoc-typescript-plugin": "1.0.1",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"power-assert": "1.6.1",
"prettier": "3.4.0",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
},
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"helper.ts"
]
},
"bundlesize": [
{
"path": "./lib/esm/*.js",
"maxSize": "2 kb"
},
{
"path": "./lib/esm/validators/*.js",
"maxSize": "1 kb"
}
]
}