forked from patw0929/react-intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.31 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
{
"name": "react-intl-tel-input",
"version": "3.4.2",
"description": "Telephone input component. Rewrite intl-tel-input in React.js.",
"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": "^15.1.0",
"react-dom": "^15.1.0"
},
"dependencies": {
"classnames": "^2.2.5",
"underscore.deferred": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-istanbul": "^0.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "6.9.0",
"chai": "3.5.0",
"coveralls": "^2.11.9",
"css-loader": "~0.23.1",
"css-modules-require-hook": "^4.0.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"grunt": "~1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-connect": "~1.0.2",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-imagemin": "1.0.1",
"grunt-gh-pages": "^1.1.0",
"grunt-open": "~0.2.3",
"grunt-webpack": "~1.0.11",
"image-webpack-loader": "^1.8.0",
"jsdom": "^9.2.1",
"load-grunt-tasks": "~3.5.0",
"mocha": "2.5.3",
"mock-local-storage": "^1.0.2",
"node-sass": "^3.8.0",
"pre-push": "^0.1.1",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.1",
"serve-static": "^1.11.1",
"sinon": "^1.17.4",
"style-loader": "~0.13.1",
"uglify-loader": "^1.3.0",
"url-loader": "~0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"xmlhttprequest": "^1.8.0"
},
"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": "./node_modules/.bin/mocha -t 20000 --compilers js:babel-core/register --require ./tests/setup.js ./node_modules/mock-local-storage/lib/mock-localstorage.js --recursive tests/*-test.js",
"test:watch": "./node_modules/.bin/mocha -t 20000 --compilers js:babel-core/register --require ./tests/setup.js ./node_modules/mock-local-storage/lib/mock-localstorage.js --recursive tests/*-test.js --watch",
"coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- --require ./tests/setup.js ./node_modules/mock-local-storage/lib/mock-localstorage.js --recursive tests/*-test.js",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"pre-push": [
"lint",
"test"
],
"engines": {
"node": ">=6.2.2"
},
"license": "MIT"
}