forked from yiminghe/async-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.25 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
{
"name": "async-validator",
"version": "4.2.5",
"description": "validate form asynchronous",
"typings": "typings/index.d.ts",
"keywords": [
"validator",
"validate",
"async"
],
"homepage": "https://github.com/yiminghe/async-validator",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:yiminghe/async-validator.git"
},
"@pika/pack": {
"pipeline": [
[
"pika-plugin-ts-types",
{
"args": [
"--rootDir",
"src"
]
}
],
[
"pika-plugin-build-web-babel",
{
"format": "cjs"
}
],
[
"pika-plugin-build-web-babel"
]
]
},
"jest": {
"collectCoverageFrom": [
"src/*"
],
"testMatch": [
"**/__tests__/**/*.spec.[j|t]s?(x)"
]
},
"bugs": {
"url": "https://github.com/yiminghe/async-validator/issues"
},
"license": "MIT",
"config": {
"port": 8010
},
"scripts": {
"test-url": "yarn ts-node tests/url.ts",
"lint-staged": "lint-staged",
"prettier": "prettier --write \"{src,__tests__,tests}/**/*.{js,tsx,ts}\"",
"pub": "np --no-cleanup --no-publish --no-release-draft && npm run build && cd pkg && npm publish",
"build": "pika-pack build",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"coverage:gha": "jest --coverage",
"version": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.13.0",
"@pika/pack": "^0.5.0",
"@types/jest": "27.x",
"babel-jest": "27.x",
"coveralls": "^2.13.1",
"jest": "27.x",
"lint-staged": "^7.2.0",
"np": "7.x",
"pika-plugin-build-web-babel": "^0.10.0",
"pika-plugin-ts-types": "0.1.x",
"pre-commit": "^1.2.2",
"prettier": "^1.11.1",
"ts-node": "^10.8.1",
"typescript": "^4.3.2"
},
"lint-staged": {
"*.{tsx,js,jsx,ts}": [
"prettier --write",
"git add"
]
},
"pre-commit": [
"lint-staged"
],
"packageManager": "[email protected]"
}