-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "kbank-payroll.js",
"version": "0.0.4",
"description": "Export data as text file that support KBank Smart Payroll system",
"main": "src/index.js",
"scripts": {
"dev": "jest --watch",
"prepublish": "npm run lint && npm run test",
"lint": "eslint src/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MicroBenz/kbank-payroll.js.git"
},
"author": "Tananan Tangthanachaikul <microbenz.prob@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MicroBenz/kbank-payroll.js/issues"
},
"keywords": [
"kbank",
"payroll"
],
"homepage": "https://github.com/MicroBenz/kbank-payroll.js#readme",
"devDependencies": {
"@types/jest": "^24.0.11",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.5.0"
},
"dependencies": {
"dayjs": "^1.8.10",
"lodash": "^4.17.11"
},
"engines": {
"node": ">=8.0.0"
}
}