-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.81 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
{
"name": "text-mask-addon-iban",
"version": "0.1.2",
"description": "IBAN masks that can be used with Text Mask",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix && prettier-standard **/*.js",
"test": "jest",
"build": "babel src -d dist --delete-dir-on-start",
"prepack": "npm run build",
"release": "standard-version && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DimaRGB/text-mask-addon-iban.git"
},
"keywords": [
"text-mask",
"text-mask-addon",
"iban",
"ibantools"
],
"author": "Dmytro Lyfarenko <dima.rgb@gmail.com>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/DimaRGB/text-mask-addon-iban/issues"
},
"homepage": "https://github.com/DimaRGB/text-mask-addon-iban#readme",
"peerDependencies": {
"ibantools": "^4.1.3",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"prettier-standard": "^9.1.1",
"standard": "^12.0.1",
"standard-version": "^9.3.2"
},
"standard": {
"parser": "babel-eslint",
"env": [
"shared-node-browser",
"jest"
]
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"standard --fix",
"prettier-standard"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm test"
}
}
}