-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
124 lines (124 loc) · 3.33 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "redux-form-input-masks",
"version": "2.0.2",
"description": "Input masking with redux-form made easy",
"main": "./dist/bundle.js",
"typings": "./dist/typings.d.ts",
"scripts": {
"build:clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build:docs": "cd examples && npm i && npm run build && cpy index.html ../docs && cpy dist/* ../docs/dist",
"build": "npm run build:clean && npm run build:webpack",
"test": "jest",
"lint:eslint": "eslint --ext .js,.jsx src examples",
"lint:prettier": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "npm-run-all lint:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renato-bohler/redux-form-input-masks.git"
},
"keywords": [
"redux",
"form",
"redux-form",
"input",
"masking",
"format",
"formatting",
"field",
"react"
],
"author": "Renato Böhler <[email protected]> (https://github.com/renato-bohler)",
"license": "MIT",
"bugs": {
"url": "https://github.com/renato-bohler/redux-form-input-masks/issues"
},
"homepage": "https://renato-bohler.github.io/redux-form-input-masks",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^2.0.0",
"@semantic-release/git": "^4.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"commitizen": "^4.3.0",
"copy-webpack-plugin": "^4.6.0",
"cpy-cli": "^1.0.1",
"cross-env": "^5.1.3",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.44.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.6.1",
"husky": "^0.14.3",
"intl": "^1.2.5",
"jest": "^22.3.0",
"lint-staged": "^6.1.1",
"npm-run-all": "^4.1.2",
"prettier": "^1.10.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.0.0",
"webpack": "^3.11.0"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"transform": {
"^.+\\.js$": "babel-jest"
},
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
]
},
"lint-staged": {
"*.{js,jsx,css,md}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
]
}
}