-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.51 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
{
"name": "react-intl-number-format",
"version": "0.0.0-development",
"description": "Number and currency formatter based on the ECMAScript Internationalization API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.umd.js",
"files": [
"dist/"
],
"scripts": {
"commit": "git-cz",
"build": "microbundle --jsx React.createElement",
"dev": "microbundle --jsx React.createElement watch",
"docz:dev": "docz dev",
"docz:build": "docz build",
"lint": "eslint src/**",
"test": "jest",
"test:watch": "jest --watch",
"prePublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/marciobarrios/react-intl-number-format.git"
},
"keywords": [
"react",
"currency",
"numberformat",
"format",
"formatter",
"internationalization"
],
"author": "Marcio Barrios <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marciobarrios/react-intl-number-format/issues"
},
"homepage": "https://github.com/marciobarrios/react-intl-number-format#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.mdx": [
"prettier --write",
"git add"
],
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.8.0",
"codecov": "^3.5.0",
"commitizen": "^3.1.1",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.5.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"microbundle": "^0.11.0",
"prettier": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-testing-library": "^7.0.1",
"semantic-release": "^15.13.12"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"get-user-locale": "^1.1.1"
}
}