-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.94 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": "multiple-sources-uploader",
"description": "Upload a photo from your local files, camera or your favorite social networks like Facebook, Google Photos or Instagram",
"version": "1.1.3",
"scripts": {
"start": "webpack --watch --config webpack/development.js",
"build": "npm run clean && npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib --copy-files",
"build:umd": "webpack --config webpack/development.js",
"build:umd:min": "webpack --config webpack/production.js",
"demo": "webpack-dev-server --config webpack/demo.js",
"clean": "rimraf dist lib",
"prepublishOnly": "npm run clean && npm run build"
},
"module": "lib/index.js",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gtournie/multiple-sources-uploader.git"
},
"keywords": [
"upload",
"uploader",
"images",
"photos",
"facebook",
"google photos",
"instagram",
"sources",
"multiple sources",
"multiple sources uploader"
],
"author": "Tournier Guillaume <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gtournie/multiple-sources-uploader/issues"
},
"homepage": "https://github.com/gtournie/multiple-sources-uploader#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.2.0",
"autoprefixer": "9.4.5",
"babel-loader": "^8.0.5",
"css-loader": "2.1.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"rimraf": "2.6.3",
"sass-loader": "^7.1.0",
"webpack": "4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "3.1.14"
},
"browserslist": [
"> 0.5%",
"not IE <= 9"
]
}