-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 KB
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
{
"name": "dialer-extension",
"version": "1.0.0",
"description": "This is a phone call extension using AWS Connect API",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"compression-webpack-plugin": "^1.0.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.6.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"standard": "^10.0.3",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1"
},
"scripts": {
"prebuild": "./node_modules/rimraf/bin.js ./extension/dist/",
"start": "node_modules/.bin/webpack --config webpack.config.js -w -d",
"build": "node_modules/.bin/webpack --config webpack.production.config.js -p",
"test": "node_modules/.bin/standard"
},
"repository": {
"type": "git",
"url": "https://github.com/webdev0528/Dialer-Extension.git"
},
"keywords": [
"extension",
"phone-call",
"chrome-extension",
"firefox-addon"
],
"bugs": {
"url": "https://github.com/webdev0528/Dialer-Extension.git/issues"
},
"homepage": "https://github.com/webdev0528/Dialer-Extension.git",
"standard": {
"globals": [
"browser",
"chrome",
"window"
],
"ignore": [
"extension/dist/",
"node_modules/"
]
}
}