forked from mozilla/web-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.02 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
{
"name": "web-ext",
"version": "1.4.0",
"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"
},
"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.15.1",
"babel-polyfill": "6.13.0",
"bunyan": "1.8.1",
"debounce": "1.0.0",
"es6-error": "3.1.0",
"es6-promisify": "5.0.0",
"firefox-profile": "0.4.2",
"fx-runner": "1.0.5",
"minimatch": "3.0.3",
"mz": "2.4.0",
"node-firefox-connect": "1.2.0",
"sign-addon": "0.1.4",
"source-map-support": "0.4.2",
"stream-to-promise": "2.2.0",
"tmp": "0.0.29",
"watchpack": "1.1.0",
"yargs": "5.0.0",
"zip-dir": "1.0.2"
},
"devDependencies": {
"babel-core": "6.14.0",
"babel-eslint": "7.0.0",
"babel-istanbul": "0.11.0",
"babel-istanbul-loader": "0.1.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-class-properties": "6.11.5",
"babel-plugin-transform-es2015-modules-commonjs": "6.14.0",
"babel-plugin-transform-flow-strip-types": "6.14.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-stage-2": "6.13.0",
"babel-runtime": "6.11.6",
"chai": "3.5.0",
"conventional-changelog-cli": "1.2.0",
"conventional-changelog-lint": "1.0.1",
"copy-dir": "0.3.0",
"coveralls": "2.11.14",
"deepcopy": "0.6.3",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-flowtype": "2.18.2",
"firefox-client": "0.3.0",
"flow-bin": "0.32.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.0.6",
"grunt-mocha-test": "0.13.2",
"grunt-newer": "1.2.0",
"grunt-webpack": "1.0.14",
"load-grunt-configs": "1.0.0",
"load-grunt-tasks": "3.5.2",
"mocha": "3.1.0",
"mocha-multi": "0.9.1",
"nsp": "2.6.1",
"sinon": "1.17.6",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.1",
"yauzl": "2.6.0"
},
"author": "Kumar McMillan",
"license": "MPL-2.0",
"yargs": {
"boolean-negation": false
}
}