-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.87 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
{
"name": "@react-phone-input/input",
"version": "1.0.0",
"description": "React.js phone input component written in Typescript",
"main": "lib/index.js",
"browser": "umd/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"files": [
"dist/",
"lib/",
"src/",
"CHANGELOG.md"
],
"scripts": {
"build": "yarn build:commonjs && yarn build:esm && yarn build:umd",
"build:commonjs": "rimraf ./lib && tsc -p ./tsconfig.json",
"build:esm": "rimraf ./esm && tsc -p ./tsconfig-esm.json",
"build:umd": "rimraf ./umd && tsc -p ./tsconfig-umd.json",
"clean": "rimraf ./package-lock.json ./yarn.lock ./node_modules/ && yarn",
"update": "yarn-check -u",
"lint": "npx eslint ./src/**/*.{ts,tsx}",
"pub": "yarn build && yarn publish",
"pub:next": "yarn build && npm publish . --tag next",
"docs:dev": "npx styleguidist server --config ./styleguide.config.js --verbose",
"docs:build": "npx styleguidist build --config ./styleguide.config.js --verbose",
"tc": "tsc -p ./tsconfig.json --noEmit --traceResolution",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustFly1984/react-phone-input.git"
},
"peerDependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"devDependencies": {
"@getify/eslint-plugin-proper-arrows": "8.0.1",
"@types/babel-types": "7.0.7",
"@types/jest": "24.0.13",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"@typescript-eslint/eslint-plugin": "1.9.0",
"@typescript-eslint/parser": "1.9.0",
"acorn": "6.1.1",
"awesome-typescript-loader": "5.2.1",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-config-standard-react": "7.0.2",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-plugin-ascii": "1.0.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-dependencies": "2.4.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-html": "5.0.5",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-json": "1.4.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-no-inferred-method-name": "1.0.2",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-optimize-regex": "1.1.6",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-react-functional-set-state": "1.2.1",
"eslint-plugin-react-hooks": "1.6.0",
"eslint-plugin-react-perf": "3.1.0",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "6.5.0",
"husky": "2.3.0",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"react": "16.8.6",
"react-docgen-typescript": "1.12.4",
"react-dom": "16.8.6",
"react-styleguidist": "9.1.2",
"react-testing-library": "8.0.1",
"rimraf": "2.6.3",
"stylelint": "10.0.1",
"stylelint-a11y": "1.2.0",
"stylelint-config-css-modules": "1.4.0",
"stylelint-config-recommended": "2.2.0",
"stylelint-config-standard": "18.3.0",
"stylelint-css-modules": "0.8.3",
"stylelint-high-performance-animation": "1.2.1",
"ts-jest": "24.0.2",
"typescript": "3.5.1",
"webpack": "4.32.2"
},
"keywords": [
"react.js",
"phone-input",
"react-phone-input",
"typescript"
],
"author": {
"name": "Alexey Lyakhov",
"email": "justfly1984@gmail.com",
"url": "https://github.com/JustFly1984"
},
"contributors": [
"Ignat Awwit <ignatius.awwit@gmail.com> (https://github.com/awwit)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/JustFly1984/react-phone-input/issues"
},
"homepage": "https://github.com/JustFly1984/react-phone-input#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/classnames": "^2.2.8",
"classnames": "^2.2.6",
"css-loader": "^2.1.1",
"style-loader": "^0.23.1",
"ts-debounce": "^1.0.0"
}
}