-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "credit-card-space",
"version": "1.1.0",
"description": "Simple plugin that adds space after every 4 digits in credit card input and restricts input for numbers only",
"main": "src/index.js",
"module": "src/index.js",
"browser": "dist/credit-card-space.js",
"files": ["dist/*", "README.md", "package.json", "LICENSE"],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup --config rollup.config.js --bundleConfigAsCjs",
"commit": "git-cz",
"test": "jest --coverage --no-cache",
"postversion": "git push origin master --tags"
},
"keywords": [
"cc",
"card",
"format",
"formatter"
],
"author": "Ivan Vasilev",
"license": "MIT",
"bugs": "https://github.com/konclave/credit-card-space/issues",
"homepage": "https://github.com/konclave/credit-card-space#readme",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.3.1",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"rimraf": "^3.0.2",
"rollup": "^3.9.0",
"rollup-plugin-terser": "^7.0.2"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom",
"transform": {
"^.+\\.js$": "./jest.transform.js"
}
},
"browserslist": [
"last 2 versions",
"> 3%",
"not ie <= 10",
"not dead"
],
"repository": {
"type": "git",
"url": "https://github.com/konclave/credit-card-space.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}