bottender-form
Version:
An experimental package for handling conversational form with Bottender.
49 lines (48 loc) • 1.19 kB
JSON
{
"name": "bottender-form",
"description": "An experimental package for handling conversational form with Bottender.",
"license": "MIT",
"version": "0.2.1",
"main": "src/index.js",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint src examples",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"test": "npm run lint:fix && npm run testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage --runInBand --forceExit",
"testonly:watch": "jest --watch",
"preversion": "npm test"
},
"dependencies": {
"lodash": "^4.17.4",
"warning": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-yoctol-base": "^0.15.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.5.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"prettier-package-json": "^1.4.0"
},
"keywords": [
"bottender",
"conversational-form",
"form"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}