forked from mozilla/web-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.32 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "web-ext",
"version": "3.1.1",
"description": "A command line tool to help build, run, and test web extensions",
"main": "dist/web-ext.js",
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"engine-strict": true,
"bin": {
"web-ext": "bin/web-ext"
},
"scripts": {
"build": "node scripts/build",
"start": "node scripts/develop",
"test": "node scripts/test",
"test-coverage": "nyc npm run test",
"test-functional": "node scripts/test-functional",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls",
"audit-deps": "node ./scripts/audit-deps",
"changelog": "conventional-changelog -p angular -u",
"changelog-lint": "commitlint --from master",
"changelog-lint-from-stdin": "commitlint",
"travis-pr-title-lint": "node ./scripts/travis-pr-title-lint",
"gen-contributing-toc": "doctoc CONTRIBUTING.md"
},
"homepage": "https://github.com/mozilla/web-ext",
"repository": {
"type": "git",
"url": "git://github.com/mozilla/web-ext.git"
},
"bugs": {
"url": "http://github.com/mozilla/web-ext/issues"
},
"keywords": [
"web",
"extensions",
"web extensions",
"browser extensions",
"firefox",
"mozilla",
"add-ons",
"google",
"chrome",
"opera"
],
"dependencies": {
"@babel/polyfill": "7.12.1",
"@babel/runtime": "7.12.5",
"@cliqz-oss/firefox-client": "0.3.1",
"@cliqz-oss/node-firefox-connect": "1.2.1",
"adbkit": "2.11.1",
"addons-linter": "1.10.0",
"bunyan": "1.8.12",
"camelcase": "5.3.1",
"debounce": "1.2.0",
"decamelize": "3.2.0",
"es6-error": "4.1.1",
"event-to-promise": "0.8.0",
"firefox-profile": "1.2.0",
"fx-runner": "1.0.11",
"git-rev-sync": "1.12.0",
"mkdirp": "0.5.5",
"multimatch": "4.0.0",
"mz": "2.7.0",
"node-notifier": "8.0.1",
"opn": "5.5.0",
"parse-json": "4.0.0",
"require-uncached": "2.0.0",
"sign-addon": "0.3.1",
"source-map-support": "0.5.19",
"stream-to-promise": "2.2.0",
"strip-json-comments": "3.0.1",
"tmp": "0.1.0",
"update-notifier": "3.0.1",
"watchpack": "1.7.5",
"yargs": "13.2.4",
"zip-dir": "1.0.2"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-flow": "7.0.0",
"@babel/register": "7.4.4",
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"babel-eslint": "10.0.2",
"babel-loader": "8.0.6",
"babel-plugin-istanbul": "5.2.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"conventional-changelog-cli": "2.0.23",
"copy-dir": "1.1.0",
"coveralls": "3.0.6",
"cross-env": "5.2.0",
"deepcopy": "2.0.0",
"doctoc": "1.4.0",
"eslint": "6.1.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-flowtype": "4.2.0",
"eslint-plugin-import": "2.18.2",
"flow-bin": "0.97.0",
"html-entities": "1.2.1",
"mocha": "6.2.0",
"nyc": "14.1.1",
"prettyjson": "1.2.1",
"shelljs": "0.8.3",
"sinon": "7.4.1",
"webpack": "4.39.1",
"yauzl": "2.10.0"
},
"author": "Kumar McMillan",
"license": "MPL-2.0",
"nyc": {
"include": "src/**/*.js",
"reporter": [
"lcov",
"text"
]
}
}