-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "bugsnag-sourcemap-webpack-plugin",
"version": "0.9.8",
"description": "A Webpack plugin to upload sourcemaps to Bugsnag after build",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel src/BugsnagSourceMapPlugin.js -o lib/index.js",
"test": "NODE_PATH='src' ava",
"lint": "eslint src/",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
]
},
"ava": {
"files": [
"test/*.js"
],
"verbose": true,
"require": [
"babel-register"
]
},
"keywords": [
"webpack",
"plugin",
"bugsnag",
"sourcemap",
"source-map"
],
"homepage": "https://github.com/bakunyo/bugsnag-sourcemap-webpack-plugin",
"bugs": "https://github.com/bakunyo/bugsnag-sourcemap-webpack-plugin/issues",
"repository": {
"type": "git",
"url": "https://github.com/bakunyo/bugsnag-sourcemap-webpack-plugin"
},
"author": "bakunyo <[email protected]> (https://github.com/bakunyo)",
"license": "MIT",
"devDependencies": {
"ava": "^0.17.0",
"ava-spec": "^1.0.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0"
},
"dependencies": {
"async": "^2.1.4",
"superagent": "^3.8.2"
}
}