forked from vireshshah/custom-protocol-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.79 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
{
"name": "@krzyhan/custom-protocol-check",
"displayName": "Custom Protocol Check",
"slug": "custom-protocol-check",
"version": "1.0.0",
"description": "Detect whether a custom protocol is available in browser (Chrome, Firefox, Safari, iOS, IE8-IE11 and Edge). Fork from ",
"main": "index.js",
"scripts": {
"build": "webpack --env dev && webpack --env build",
"start": "npm run build && webpack-dev-server --config ./webpack.config.js",
"test": "start-server-and-test start http://localhost:9999 test:protractor",
"test:protractor": "protractor protractor.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krzyhan/custom-protocol-check.git"
},
"keywords": [
"custom protocol check",
"custom protocol detection",
"javascript protocol check",
"javascript custom protocol",
"browser protocol support"
],
"tags": [
"custom protocol check",
"custom protocol detection",
"javascript protocol check",
"javascript custom protocol",
"browser protocol support"
],
"maintainers": [
{
"name": "Ismail Habib Muhammad",
"url": "https://github.com/ismailhabi"
},
{
"name": "Viresh Shah",
"email": "vireshshah@gmail.com",
"url": "https://github.com/vireshshah"
},
{
"name": "krzyhan",
"email": "krzyhanweb@gmail.com",
"url": "https://github.com/krzyhan"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/krzyhan/custom-protocol-check/issues"
},
"homepage": "https://github.com/krzyhan/custom-protocol-check#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/plugin-proposal-decorators": "^7.8.0",
"@babel/plugin-proposal-export-namespace-from": "^7.8.0",
"@babel/plugin-proposal-function-sent": "^7.8.0",
"@babel/plugin-proposal-json-strings": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.8.0",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-proposal-throw-expressions": "^7.8.0",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-syntax-import-meta": "^7.8.0",
"@babel/preset-env": "^7.7.7",
"autoprefixer": "^9.7.3",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"coveralls": "^3.0.9",
"terser-webpack-plugin": "^2.3.2",
"webpack": "^4.41.5",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10",
"yargs": "^15.1.0",
"webpack-dev-server": "^3.10.1",
"start-server-and-test": "^1.10.6",
"protractor": "^5.4.2",
"chromedriver": "^79.0.0",
"webdriver-manager": "^12.1.7",
"jasmine-core": "^3.5.0",
"jasmine_dom_matchers": "^1.4.0",
"jasmine-spec-reporter": "^4.2.1"
}
}