forked from catamphetamine/react-phone-number-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.25 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
{
"name": "react-phone-number-input",
"version": "0.15.2",
"description": "Telephone input for React",
"main": "index.common.js",
"module": "index.js",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"classnames": "^2.2.5",
"input-format": "^0.2.0",
"libphonenumber-js": "^0.4.33",
"prop-types": "^15.5.6",
"react-responsive-ui": "^0.10.2",
"react-styling": "^1.6.1",
"scroll-into-view-if-needed": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.7.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-display-name": "^6.5.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.22.0",
"better-npm-run": "0.0.14",
"chai": "^3.5.0",
"flag-icon-css": "^2.8.0",
"istanbul": "^1.0.0-alpha.2",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"npm-run-all": "^1.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.5.0",
"webpack": "^3.6.0"
},
"scripts": {
"generate-countries": "babel-node runnable/generate-countries",
"test": "mocha --require test/setup --colors --bail --reporter spec test/ --recursive",
"test-coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/setup --colors --reporter dot test/ --recursive",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/setup --colors --reporter spec test/ --recursive",
"browser-build": "npm run build-es6-modules && npm run copy-json && better-npm-run browser-build",
"browser-build-dev": "npm run build-es6-modules && npm run copy-json && WEBPACK_ENV=dev webpack --progress --colors --watch",
"copy-json": "cp ./source/*.json ./commonjs/ && cp ./source/*.json ./modules/",
"clean-for-build": "rimraf ./commonjs/**/* ./modules/**/*",
"build-commonjs-modules": "better-npm-run build-commonjs-modules",
"build-es6-modules": "better-npm-run build-es6-modules",
"build": "npm-run-all clean-for-build build-commonjs-modules build-es6-modules copy-json",
"prepublish": "npm-run-all build browser-build test"
},
"betterScripts": {
"browser-build": {
"command": "webpack --progress --colors",
"env": {
"WEBPACK_ENV": "build"
}
},
"build-commonjs-modules": {
"command": "babel ./source --out-dir ./commonjs --source-maps",
"env": {
"BABEL_ENV": "commonjs"
}
},
"build-es6-modules": {
"command": "babel ./source --out-dir ./modules --source-maps",
"env": {
"BABEL_ENV": "es6"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/catamphetamine/react-phone-number-input.git"
},
"keywords": [
"javascript",
"react",
"phone",
"number",
"input",
"telephone",
"international",
"iphone"
],
"author": "catamphetamine <purecatamphetamine@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/catamphetamine/react-phone-number-input/issues"
},
"homepage": "https://github.com/catamphetamine/react-phone-number-input#readme"
}