Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | function createPackageFile( options ) { } // ANCHOR module.exports module.exports = () => { return { "name": "apps-script-template", "version": "1.0.0", "description": "Template bundler for GAS Projects", "author": { "name": "Cam Smith" }, "main": "src/index.js", "scripts": { "build": "webpack -p", "upload": "clasp push", "deploy": "npm run build && npm run upload" }, "repository": { "type": "git", "url": "git+https://github.com/labnol/apps-script-starter.git" }, "keywords": [], "dependencies": { "eslint-plugin-googleappsscript": "^1.0.1" }, "devDependencies": { "@babel/core": "^7.1.5", "@babel/plugin-proposal-class-properties": "^7.1.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", "@babel/plugin-transform-member-expression-literals": "^7.0.0", "@babel/plugin-transform-object-assign": "^7.0.0", "@babel/plugin-transform-property-literals": "^7.0.0", "@babel/preset-env": "^7.1.5", "@google/clasp": "^1.6.3", "@types/google-apps-script": "^0.0.31", "babel-eslint": "^10.0.1", "babel-loader": "^8.0.4", "babel-plugin-add-module-exports": "^1.0.0", "babel-plugin-array-includes": "^2.0.3", "clean-webpack-plugin": "^0.1.19", "copy-webpack-plugin": "^4.6.0", "dayjs": "^1.7.7", "eslint": "^5.9.0", "eslint-config-airbnb-base": "^13.1.0", "eslint-config-prettier": "^3.1.0", "eslint-loader": "^2.1.1", "eslint-plugin-import": "^2.14.0", "eslint-plugin-prettier": "^3.0.0", "gas-lib": "^2.0.2", "gas-webpack-plugin": "^0.3.0", "prettier": "^1.15.1", "uglifyjs-webpack-plugin": "^2.0.1", "webpack": "^4.25.1", "webpack-cli": "^3.1.2" } } } |