-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.57 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
{
"name": "bottender-recognizer",
"description": "Build bottender bots with intent recognizer and action resolver.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Yoctol/bottender-recognizer.git"
},
"version": "0.3.0",
"main": "src/index",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint .",
"lint:fix": "yarn run lint -- --fix",
"lint:staged": "lint-staged",
"test": "yarn run lint && yarn run testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage --runInBand --forceExit",
"testonly:watch": "jest --runInBand --watch"
},
"dependencies": {
"@google/chatbase": "^1.1.2",
"debug": "^3.1.0",
"delay": "^3.0.0",
"warning": "^4.0.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-yoctol-base": "^0.16.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.1",
"husky": "^0.14.3",
"jest": "^23.2.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"prettier-package-json": "^1.6.0"
},
"keywords": [
"bot",
"bottender",
"recognizer"
],
"engines": {
"node": ">=7.6"
},
"jest": {
"coverageDirectory": "./coverage/",
"transformIgnorePatterns": [
"/node_modules/"
],
"testEnvironment": "node",
"timers": "fake",
"resetModules": true,
"resetMocks": true
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}