@eyedea-sockets/messenger-bot
Version:
Socket for Facebook Messenger Platform communication
91 lines (90 loc) • 2.41 kB
JSON
{
"name": "@eyedea-sockets/messenger-bot",
"version": "0.0.1",
"description": "Socket for Facebook Messenger Platform communication",
"repository": "https://github.com/eyedea-io/syncano-socket-messenger-bot.git",
"public": true,
"author": "Eyedea <hello@eyedea.io> https://eyedea.io",
"license": "MIT",
"keywords": [
"syncano",
"socket"
],
"peerDependencies": {
"@syncano/cli": "^0.13.0-alpha.f6ea95d4"
},
"dependencies": {
"@eyedea/syncano": "0.2.0",
"request": "^2.88.0"
},
"scripts": {
"build": "npm run build:src && npm run build:env",
"build:src": "sh ./bin/compile",
"build:env": "sh ./bin/compile-env",
"test": "npm-run-all --parallel test:lint test:audit test:unit",
"codecov": "codecov",
"test:all": "NODE_ENV=test jest e2e/.*\\.test\\.js unit/.*\\.test\\.js",
"test:unit": "NODE_ENV=test jest unit/.*\\.test\\.js",
"test:e2e": "NODE_ENV=test jest e2e/.*\\.test\\.js",
"test:audit": "npm audit || exit 0",
"test:lint": "tslint --fix -c tslint.json ./src/**/*.ts"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.55",
"@babel/core": "^7.0.0-beta.55",
"@babel/preset-env": "^7.0.0-beta.55",
"@babel/preset-typescript": "^7.0.0-beta.55",
"@syncano/test": "0.13.0-alpha.4d352111",
"@types/node": "^10.5.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"codecov": "^3.0.4",
"jest": "^23.4.2",
"npm-run-all": "^4.1.1",
"sinon": "^5.1.0",
"ts-jest": "^23.1.3",
"tslint": "5.11.0",
"tslint-eslint-rules": "5.3.1",
"tslint-react": "3.6.0",
"typescript": "^2.7.2"
},
"jest": {
"testEnvironment": "node",
"globals": {
"ts-jest": {
"useBabelrc": true,
"ignoreCoverageForAllDecorators": true
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
},
"babel": {
"sourceMaps": "inline",
"plugins": [
"transform-class-properties",
"istanbul"
],
"presets": [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
"targets": {
"node": "8"
}
}
]
]
}
}