-
Notifications
You must be signed in to change notification settings - Fork 343
/
package.json
78 lines (78 loc) · 2.53 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
70
71
72
73
74
75
76
77
78
{
"name": "google-drive-copy-folder",
"version": "6.1.0",
"description": "Web app to recursively copy Google Drive folder and contents",
"main": "gulpfile.js",
"devDependencies": {
"@google/clasp": "^2.0.1",
"@types/gapi.drive": "0.0.1",
"@types/google-apps-script": "0.0.37",
"autoprefixer": "^9.4.6",
"babel-core": "^6.26.3",
"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",
"extract-text-webpack-plugin": "^2.1.2",
"fs-extra": "^8.0.0",
"gulp": "~3.9.0",
"gulp-hogan": "^2.0.0",
"gulp-insert": "~0.5.0",
"gulp-rename": "^1.4.0",
"material-ui": "^0.19.4",
"mocha": "^3.1.2",
"nyc": "^11.9.0",
"phantomjs-prebuilt": "^2.1.16",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"prettier": "^1.15.3",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"sinon": "^4.5.0",
"style-loader": "^0.13.1",
"svg2png": "3.1.0",
"tslib": "^1.9.3",
"typescript": "^3.2.4",
"webpack": "^2.5.1"
},
"scripts": {
"pretest": "tsc lib/*.ts --module commonjs || true",
"posttest": "rm lib/*.js",
"test": "nyc mocha --grep formatting --invert --compilers js:babel-core/register",
"prettier-test": "mocha test/formatting/prettier.test.js --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 && npm run copylib",
"postbuild:prod": "rm ./dist/bundle.js",
"copylib": "cp -r lib/* dist",
"clean": "rm dist/*.ts && rm dist/*.js && rm dist/*.html",
"clasp:push": "clasp push",
"clasp:deploy": "clasp deploy",
"clasp:pull": "clasp pull",
"clasp:login": "clasp login",
"clasp:status": "clasp status",
"prettier": "prettier --write --single-quote \"{,!(node_modules),!(public),!(dist)/**/}*.{ts,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"
}
}