This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
forked from hodgepodgers/ng-intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "ng-intl-tel-input",
"version": "2.0.0",
"description": "AngularJS directive implementing intl-tel-input (https://github.com/Bluefieldscom/intl-tel-input)",
"main": "dist/ng-intl-tel-input.js",
"scripts": {
"test": "npm run jshint && npm run karma",
"build": "npm run concat && npm run uglify",
"start": "nohup http-server",
"jshint": "jshint .",
"karma": "karma start karma.conf.js",
"concat": "node ./node_modules/concat-cli/index.js -f ng-intl-tel-input.{module,provider,directive}.js -o dist/ng-intl-tel-input.js",
"uglify": "uglify -s dist/ng-intl-tel-input.js -o dist/ng-intl-tel-input.min.js",
"webdriver-update": "webdriver-manager update --versions.gecko=v0.19.1",
"protractor": "protractor protractor.conf.js",
"mversion": "mversion "
},
"repository": {
"type": "git",
"url": "https://github.com/hodgepodgers/ng-intl-tel-input.git"
},
"keywords": [
"ng-intl-tel-input",
"intl-tel-input",
"international",
"telephone",
"validator",
"angularjs"
],
"author": "bighappyface <[email protected]>",
"contributors": [
{
"name": "SyntaxStacks <[email protected]>"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hodgepodgers/ng-intl-tel-input/issues"
},
"homepage": "http://hodgepodgers.github.io/ng-intl-tel-input",
"devDependencies": {
"angular": "^1.6.7",
"angular-mocks": "^1.6.7",
"bower": "^1.4.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"concat-cli": "^4.0.0",
"http-server": "^0.10.0",
"jasmine-core": "^2.3.4",
"jshint": "^2.9.5",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.4",
"mocha": "^4.0.1",
"mversion": "^1.10.0",
"phantomjs": "^1.9.17",
"phantomjs-polyfills": "^1.0.1",
"protractor": "^5.4.1",
"sinon": "^4.1.3",
"uglify": "^0.1.5"
},
"dependencies": {
"intl-tel-input": "^14.0.0"
}
}