-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "webpack-uglify-sourcemap-test",
"version": "1.0.0",
"description": "Test for bad sourcemaps with some combination of webpack, uglifyjs-webpack-plugin and babel",
"main": "index.html",
"scripts": {
"prebuild": "npm install",
"build": "cross-env NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabaum10/webpack-uglifyjs-sourcemap-test.git"
},
"author": "Geoff Baum",
"license": "ISC",
"bugs": {
"url": "https://github.com/gabaum10/webpack-uglifyjs-sourcemap-test/issues"
},
"homepage": "https://github.com/gabaum10/webpack-uglifyjs-sourcemap-test#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.25.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^3.0.0",
"path": "^0.12.7",
"progress-bar-webpack-plugin": "^1.10.0",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"webpack": "^3.5.4"
},
"dependencies": {
"backbone": "^1.2.0",
"jquery": "^2.1.1",
"jquery.browser": "^0.1.0",
"underscore": "^1.8.3"
}
}