forked from mozilla/web-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.57 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
125
126
127
128
129
130
{
"name": "web-ext",
"version": "1.8.1",
"description": "A command line tool to help build, run, and test web extensions",
"main": "dist/web-ext.js",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"engine-strict": true,
"bin": {
"web-ext": "bin/web-ext"
},
"scripts": {
"build": "grunt build",
"start": "grunt develop",
"flow-check": "grunt flowbin:check",
"lint": "grunt lint",
"test": "grunt test",
"publish-coverage": "grunt coveralls",
"nsp-check": "nsp check -o summary",
"changelog": "conventional-changelog -p angular -u",
"changelog-lint": "conventional-changelog-lint --from master",
"changelog-lint-from-stdin": "conventional-changelog-lint",
"travis-pr-title-lint": "grunt travis-pr-title-lint"
},
"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": {
"addons-linter": "0.16.0",
"babel-polyfill": "6.20.0",
"babel-runtime": "6.23.0",
"bunyan": "1.8.7",
"camelcase": "4.0.0",
"debounce": "1.0.0",
"decamelize": "1.2.0",
"es6-error": "4.0.2",
"es6-promisify": "5.0.0",
"event-to-promise": "0.8.0",
"firefox-profile": "0.4.9",
"fx-runner": "1.0.6",
"git-rev-sync": "1.8.0",
"minimatch": "3.0.3",
"mkdirp": "0.5.1",
"mz": "2.6.0",
"node-firefox-connect": "1.2.0",
"open": "0.0.5",
"node-notifier": "5.0.2",
"parse-json": "2.2.0",
"regenerator-runtime": "0.10.2",
"require-uncached": "1.0.3",
"sign-addon": "0.2.1",
"source-map-support": "0.4.11",
"stream-to-promise": "2.2.0",
"tmp": "0.0.30",
"watchpack": "1.3.0",
"update-notifier": "2.0.0",
"yargs": "6.6.0",
"zip-dir": "1.0.2"
},
"devDependencies": {
"babel-core": "6.23.1",
"babel-eslint": "7.1.0",
"babel-istanbul": "0.12.0",
"babel-istanbul-loader": "0.1.0",
"babel-loader": "6.3.2",
"babel-plugin-transform-class-properties": "6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-2": "6.18.0",
"chai": "3.5.0",
"conventional-changelog-cli": "1.2.0",
"conventional-changelog-lint": "1.1.0",
"copy-dir": "0.3.0",
"coveralls": "2.11.16",
"deepcopy": "0.6.3",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-flowtype": "2.30.3",
"eslint-plugin-import": "2.2.0",
"firefox-client": "0.3.0",
"flow-bin": "0.38.0",
"grunt": "1.0.1",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-watch": "1.0.0",
"grunt-coveralls": "1.0.1",
"grunt-eslint": "19.0.0",
"grunt-flowbin": "0.1.7",
"grunt-mocha-test": "0.13.2",
"grunt-newer": "1.2.0",
"grunt-webpack": "1.0.18",
"load-grunt-configs": "1.0.0",
"load-grunt-tasks": "3.5.2",
"mocha": "3.2.0",
"mocha-multi": "0.10.0",
"nsp": "2.6.3",
"object.entries": "1.0.4",
"object.values": "1.0.4",
"prettyjson": "1.2.1",
"sinon": "1.17.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2",
"yauzl": "2.7.0"
},
"author": "Kumar McMillan",
"license": "MPL-2.0",
"yargs": {
"boolean-negation": false
}
}