forked from ericyd/gdrive-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.47 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.47 KB
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
70
71
72
73
74
75
76
77
78
79
{
"name": "google-drive-copy-folder",
"version": "6.0.0",
"description": "Web app to recursively copy Google Drive folder and contents",
"main": "gulpfile.js",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"eslint": "^3.9.1",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.1",
"eslint-plugin-react": "^6.6.0",
"gulp": "~3.9.0",
"gulp-autoprefixer": "~3.1.0",
"gulp-concat": "~2.6.0",
"gulp-hogan": "^2.0.0",
"gulp-insert": "~0.5.0",
"gulp-remove-code": "^1.0.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"ignore-styles": "^5.0.1",
"material-ui": "^0.19.4",
"mocha": "^3.1.2",
"node-sass": "^4.7.2",
"nyc": "^11.4.1",
"open": "0.0.5",
"prettier": "^1.8.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^16.2.0",
"sass-loader": "^6.0.6",
"shallowequal": "^0.2.2",
"sinon": "^4.3.0",
"style-loader": "^0.13.1",
"stylelint": "^8.2.0",
"stylelint-scss": "^2.1.0",
"stylelint-webpack-plugin": "^0.9.0",
"svg2png": "3.1.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^1.16.2"
},
"scripts": {
"test": "nyc mocha --compilers js:babel-core/register",
"watch": "gulp watch",
"watch-test-site": "webpack && gulp watch-test-site",
"webpack:dev": "webpack --config ./config/webpack.config.dev.js",
"gulp:dev": "gulp generate-test-site",
"build:dev": "npm run webpack:dev && npm run gulp:dev",
"webpack:prod": "webpack --config ./config/webpack.config.prod.js",
"gulp:prod": "gulp build",
"build:prod": "npm run webpack:prod && npm run gulp:prod",
"prettier:config": "prettier --write --single-quote",
"prettier": "npm run prettier:config -- \"{,!(node_modules),!(public),!(dist)/**/}*.{js,css,scss}\"",
"prettier:all": "npm run prettier:config -- \"{,!(node_modules),!(public),!(dist)/**/}*.{js,css,scss}\""
},
"repository": {
"type": "git",
"url": "https://github.com/ericyd/gdrive-copy.git"
},
"keywords": [
"google",
"drive",
"copy",
"folder"
],
"author": "Eric Dauenhauer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericyd/gdrive-copy/issues"
}
}