forked from thredup/rollbar-sourcemap-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.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
{
"name": "rollbar-sourcemap-webpack-plugin",
"version": "2.2.1",
"description": "A Webpack plugin to upload sourcemaps to Rollbar after build",
"main": "./dist/RollbarSourceMapPlugin.js",
"scripts": {
"clean": "rimraf dist && rimraf coverage.lcov",
"lint": "./node_modules/.bin/eslint ./src --ext .js",
"prebuild": "npm run -s clean",
"build": "babel src -d dist",
"build:watch": "watch 'npm run build' ./src",
"test": "cross-env NODE_ENV='test' nyc mocha --compilers js:babel-register",
"test:watch": "npm test -- -w",
"changelog": "npm run changelog:generate && npm run changelog:add",
"changelog:add": "git add CHANGELOG.md",
"changelog:generate": "github_changelog_generator --future-release $npm_package_version",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"preversion": "npm run -s lint && npm run -s test && npm run -s build",
"version": "npm run changelog",
"version:amend": "git commit --amend -m \"Release v${npm_package_version}\"",
"postversion": "npm run version:amend && git push origin master --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/thredup/rollbar-sourcemap-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"rollbar",
"source map",
"sourcemap",
"sourcemaps",
"production"
],
"author": "Brandon Doran <bdoran@gmail.com>",
"bugs": {
"url": "https://github.com/thredup/rollbar-sourcemap-webpack-plugin/issues"
},
"homepage": "https://github.com/thredup/rollbar-sourcemap-webpack-plugin#readme",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"codecov": "^2.0.1",
"cross-env": "^5.0.0",
"eslint": "^3.13.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.1",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"nyc": "^11.0.2",
"rimraf": "^2.5.2",
"watch": "^1.0.1"
},
"dependencies": {
"async": "^2.1.4",
"babel-runtime": "^6.20.0",
"lodash.find": "^4.3.0",
"lodash.foreach": "^4.2.0",
"lodash.reduce": "^4.3.0",
"request": "^2.72.0",
"verror": "^1.6.1"
}
}