-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "bambot",
"version": "1.0.0",
"description": "BambooHR Slack bot publishes company holidays, work anniversaries, first days, birthdays, and who is out each weekday.",
"license": "MIT",
"scripts": {
"build": "sls webpack",
"clean": "skripts clean src --pattern '*.js'",
"deploy": "sls deploy --verbose",
"format": "skripts format",
"invoke": "ENVIRONMENT=local sls invoke local -f func",
"jest": "jest",
"lint": "skripts lint --fix",
"test": "npm run lint && npm run jest && sls package",
"watch": "npm run jest -- --watch"
},
"dependencies": {
"axios": "^0.21.2",
"cwait": "^1.1.2",
"dayjs": "^1.10.5",
"dot-prop": ">=5.3.0",
"elliptic": ">=6.5.4",
"kind-of": "^6.0.3",
"lodash": ">=4.17.21",
"source-map-support": "^0.5.19",
"xml2js-es6-promise": "^1.1.1"
},
"devDependencies": {
"eslint": "^7.0.0",
"husky": "^4.2.5",
"skripts": "^0.5.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "skripts pre-commit"
}
}
}