forked from optimise-group/click-for-yealink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.5 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
{
"name": "sippy-click-for-yealink",
"description": "Sippy Click browser extension for Yealink devices.",
"version": "0.6.0",
"scripts": {
"build": "parcel build source/manifest.json --no-content-hash --no-source-maps --dist-dir distribution --no-cache --detailed-report 0",
"lint": "run-p lint:*",
"lint-fix": "run-p 'lint:* -- --fix'",
"lint:css": "stylelint source/**/*.css",
"lint:js": "xo",
"test": "run-p lint:* build",
"watch": "parcel watch source/manifest.json --dist-dir distribution --no-cache --no-hmr"
},
"repository": {
"type": "git",
"url": "https://github.com/optimise-group/click-for-yealink.git"
},
"keywords": [
"sippy",
"browser-extension",
"click2dial",
"Yealink"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/optimise-group/click-for-yealink/issues"
},
"homepage": "https://github.com/optimise-group/click-for-yealink",
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version"
],
"xo": {
"envs": [
"browser"
],
"rules": {
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "browser"
}
]
},
"space": true
},
"stylelint": {
"extends": "stylelint-config-xo"
},
"dependencies": {
"libphonenumber-js": "1.10.41"
},
"devDependencies": {
"@parcel/config-webextension": "2.9.3",
"@parcel/transformer-image": "2.9.3",
"npm-run-all": "4.1.5",
"parcel": "2.9.3",
"stylelint": "15.10.2",
"stylelint-config-xo": "0.22.0",
"xo": "0.56.0"
},
"webExt": {
"sourceDir": "distribution"
}
}