-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
100 lines (100 loc) · 2.96 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
{
"name": "react-currency-input-field",
"version": "3.9.0",
"description": "React <input/> component for formatting currency and numbers.",
"files": [
"dist/**/*",
"src/**/*"
],
"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 --open",
"test": "LANG=en_GB jest",
"test-ci": "LANG=en_GB.UTF-8 cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"typecheck": "tsc && tsc --project tsconfig.test.json",
"lint": "eslint ./ --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": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@playwright/test": "^1.40.1",
"@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": "^9.3.3",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^29.5.7",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"full-icu": "^1.3.4",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^11.0.0",
"parcel": "^2.0.0-rc.0",
"prettier": "^3.1.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "18.2.0",
"rollup": "^2.52.7",
"semantic-release": "^17.4.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.3.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {},
"targets": {
"main": false,
"module": false,
"types": false
}
}