|
2 | 2 | "name": "web-ext",
|
3 | 3 | "version": "0.0.1",
|
4 | 4 | "description": "A command line tool to help build, run, and test web extensions",
|
5 |
| - "main": "index.js", |
| 5 | + "main": "dist/web-ext.js", |
| 6 | + "bin": { |
| 7 | + "web-ext": "bin/web-ext" |
| 8 | + }, |
| 9 | + "scripts": { |
| 10 | + "build": "node -e \"require('grunt').cli()\" null build", |
| 11 | + "watch-build": "node -e \"require('grunt').cli()\" null watch-build", |
| 12 | + "test": "node -e \"require('grunt').cli()\" null test" |
| 13 | + }, |
6 | 14 | "homepage": "https://github.com/mozilla/web-ext",
|
7 | 15 | "repository": {
|
8 | 16 | "type": "git",
|
|
23 | 31 | "chrome",
|
24 | 32 | "opera"
|
25 | 33 | ],
|
26 |
| - "dependencies": {}, |
27 |
| - "devDependencies": {}, |
| 34 | + "dependencies": { |
| 35 | + "babel-polyfill": "6.3.14", |
| 36 | + "es6-promisify": "3.0.0", |
| 37 | + "yargs": "3.32.0" |
| 38 | + }, |
| 39 | + "devDependencies": { |
| 40 | + "babel-core": "6.4.5", |
| 41 | + "babel-eslint": "4.1.7", |
| 42 | + "babel-loader": "6.2.1", |
| 43 | + "babel-plugin-transform-class-properties": "6.4.0", |
| 44 | + "babel-plugin-transform-es2015-modules-commonjs": "6.4.5", |
| 45 | + "babel-preset-es2015": "6.1.2", |
| 46 | + "babel-preset-stage-2": "6.1.2", |
| 47 | + "chai": "3.5.0", |
| 48 | + "eslint": "1.10.3", |
| 49 | + "grunt": "0.4.5", |
| 50 | + "grunt-contrib-clean": "0.7.0", |
| 51 | + "grunt-contrib-copy": "0.8.2", |
| 52 | + "grunt-eslint": "17.3.1", |
| 53 | + "grunt-jscs": "2.7.0", |
| 54 | + "grunt-mocha-test": "0.12.7", |
| 55 | + "grunt-newer": "1.1.1", |
| 56 | + "grunt-webpack": "1.0.11", |
| 57 | + "load-grunt-configs": "0.4.3", |
| 58 | + "load-grunt-tasks": "3.3.0", |
| 59 | + "mocha": "2.4.5", |
| 60 | + "sinon": "1.17.3", |
| 61 | + "webpack": "1.12.12", |
| 62 | + "webpack-dev-server": "1.14.0" |
| 63 | + }, |
28 | 64 | "author": "Kumar McMillan",
|
29 |
| - "license": "MPL-2.0", |
30 |
| - "scripts": { |
31 |
| - "test": "echo \"Error: no test specified\" && exit 1" |
32 |
| - } |
| 65 | + "license": "MPL-2.0" |
33 | 66 | }
|
0 commit comments