forked from patw0929/react-intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.54 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.54 KB
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
{
"name": "@icracked/react-intl-tel-input",
"version": "2.2.7",
"description": "Rewrite intl-tel-input in React.",
"author": "patw",
"keywords": [
"react",
"react-component",
"tel",
"telephone",
"intl-tel-input",
"international-telephone-input",
"phonenumber"
],
"repository": {
"type": "git",
"url": "https://github.com/patw0929/react-intl-tel-input"
},
"bugs": {
"url": "https://github.com/patw0929/react-intl-tel-input/issues"
},
"main": "dist/main.js",
"peerDependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^5.0.0",
"babel-jest": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-class-properties": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"classnames": "^2.1.2",
"cookies-js": "^1.2.1",
"css-loader": "~0.9.0",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.3",
"grunt": "~0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-connect": "~0.8.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-imagemin": "1.0.0",
"grunt-gh-pages": "^0.10.0",
"grunt-open": "~0.2.3",
"grunt-webpack": "~1.0.8",
"image-webpack-loader": "^1.6.1",
"jest-cli": "^0.8.0",
"jest-webpack-alias": "^2.2.0",
"load-grunt-tasks": "~0.6.0",
"node-sass": "^3.4.2",
"react-addons-test-utils": "^0.14.0",
"react-hot-loader": "^1.0.7",
"react-redux": "4.4.0",
"redux": "3.3.1",
"sass-loader": "^1.0.1",
"shortid": "^2.2.4",
"simple-ajax": "^2.1.0",
"style-loader": "~0.8.0",
"throttle-debounce": "^0.1.1",
"uglify-loader": "^1.3.0",
"underscore.deferred": "^0.4.0",
"url-loader": "~0.5.5",
"webpack": "^1.12.0",
"webpack-dev-server": "^1.10.1"
},
"scripts": {
"prepublish": "npm run build-dist",
"build": "grunt build",
"build-dist": "grunt build:dist",
"start": "grunt serve",
"example": "grunt serve:example",
"lint": "eslint ./; true",
"gh-pages": "grunt gh-pages",
"test": "BABEL_JEST_STAGE=0 jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-addons-test-utils"
],
"globals": {
"__DEV__": true
}
},
"license": "MIT"
}