matheusmr13/app-script-mock

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
"name": "app-script-mock",
"version": "1.0.3",
"description": "Test your Google App Script",
"author": "Matheus Martins do Rego",
"license": "APACHE",
"main": "./build/app-script-mock.js",
"repository": {
"type": "git",
"url": "git@github.com:matheusmr13/app-script-mock.git"
},
"scripts": {
"build": "webpack --config webpack.config.js && export NODE_PATH=./build && webpack --config webpack.config-test.js",
"test": "npm run build && mocha ./build/test.js",
"lint": "eslint ./test/**/*.js ./src/**/*.js",
"lint:fix": "eslint ./test/**/*.js ./src/**/*.js --fix",
"coverage": "export NODE_PATH=./ && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"prepublish": "npm run build",
"flow": "flow"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-flow": "^1.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"flow-babel-webpack-plugin": "^1.1.0",
"flow-bin": "^0.52.0",
"glob": "^7.1.2",
"istanbul": "^0.4.5",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.3.0",
"webpack": "^3.4.1"
}
}