forked from cchanxzy/react-currency-input-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3 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
{
"name": "react-currency-input-field",
"version": "3.4.2",
"description": "React <input/> component for formatting currency and numbers.",
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/cchanxzy/react-currency-input-field",
"scripts": {
"build": "rm -rf dist && tsc && rollup -c",
"start": "parcel src/examples/index.html",
"test": "jest --coverage",
"test-ci": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --coverage",
"lint": "tsc && eslint 'src/**/*.{js,ts,tsx}' --max-warnings=0",
"gh-predeploy": "parcel build src/examples/index.html --dist-dir demo/examples --public-url ./",
"gh-deploy": "yarn gh-predeploy && gh-pages -d demo/examples",
"ci": "yarn && yarn build",
"codecov": "codecov",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/cchanxzy/react-currency-input-field"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/cchanxzy/react-currency-input-field/issues"
},
"keywords": [
"react",
"component",
"currency",
"form",
"field",
"number",
"input",
"intl",
"locale"
],
"author": "cchanxzy",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/dom": "^7.31.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"codecov": "^3.8.2",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"full-icu": "^1.3.4",
"gh-pages": "^3.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"parcel": "^2.0.0-beta.2",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "17.0.2",
"rollup": "^2.52.7",
"semantic-release": "^17.4.3",
"source-map-loader": "^3.0.0",
"ts-jest": "^26.5.6",
"tslib": "^2.3.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0"
},
"dependencies": {},
"jest": {
"verbose": false,
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
},
"targets": {
"main": false,
"module": false,
"types": false
}
}