This repository has been archived by the owner on Aug 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
109 lines (109 loc) · 3.01 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "antd-mask-input",
"version": "2.0.7",
"description": "Ant Design Mask Input",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/antoniopresto/antd-mask-input",
"license": "MIT",
"keywords": [
"react",
"antd",
"ant design",
"mask input",
"mask",
"masked"
],
"author": "@antoniopresto",
"contributors": [
{
"name": "Eduardo Amaral",
"url": "https://rolimans.dev"
}
],
"scripts": {
"describe": "npm-scripts-info",
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.prod.json --module commonjs --outDir build/main",
"build:module": "tsc -p tsconfig.prod.json",
"fix": "run-s fix:*",
"test": "jest",
"test:unit": "nyc --silent jest",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch --verbose\"",
"cov": "run-s build test:unit cov:html && opn coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:send": "nyc report --reporter=lcov > coverage.lcov && codecov",
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"version": "standard-version",
"clean": "trash build test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublish": "run-s build test"
},
"scripts-info": {
"info": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"test": "unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
"cov": "Rebuild, run tests, then create and open the coverage report"
},
"peerDependencies": {
"antd": ">=4.19.0",
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@storybook/addon-actions": "^5.2.0",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-links": "^5.2.0",
"@storybook/addons": "^5.2.0",
"@storybook/react": "^5.2.0",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.0.1",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.40",
"antd": "^4.19.1",
"codecov": "^3.1.0",
"cz-conventional-changelog": "^2.1.0",
"gh-pages": "^2.0.1",
"jest": "^27.5.1",
"jsdom-global": "^3.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"opn-cli": "^4.0.0",
"react": "^17.0.2",
"prettier": "^2.5.1",
"react-dom": "^17.0.2",
"standard-version": "^8.0.1",
"trash-cli": "^1.4.0",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.13",
"typescript": "4.6.2",
"storybook": "^6.4.19"
},
"resolutions": {
"typescript": "4.6.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
},
"dependencies": {
"imask": "6.6.1"
},
"files": [
"build",
"README.md"
]
}