forked from patw0929/react-intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.05 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
{
"name": "react-intl-tel-input",
"version": "2.7.1",
"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"
},
"dependencies": {
"classnames": "^2.1.2",
"underscore.deferred": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.0-beta.6",
"babel-istanbul": "^0.5.9",
"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",
"babel-register": "6.4.3",
"chai": "3.4.1",
"coveralls": "^2.11.9",
"css-loader": "~0.9.0",
"css-modules-require-hook": "^4.0.0",
"eslint": "^2.2.0",
"eslint-config-airbnb": "6.0.2",
"eslint-plugin-react": "4.1.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",
"jsdom": "^7.2.2",
"load-grunt-tasks": "~0.6.0",
"mocha": "2.3.4",
"mock-local-storage": "^1.0.2",
"node-sass": "^3.4.2",
"react-addons-test-utils": "^0.14.0",
"react-hot-loader": "^1.0.7",
"sass-loader": "^1.0.1",
"sinon": "^1.17.3",
"style-loader": "~0.8.0",
"uglify-loader": "^1.3.0",
"url-loader": "~0.5.5",
"webpack": "^1.12.0",
"webpack-dev-server": "^1.10.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 --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 --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"
},
"license": "MIT"
}