-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "liff-server-api",
"version": "0.1.0-delta",
"description": "",
"keywords": [
"liff",
"server",
"api"
],
"author": "Masashi Kurita",
"license": "UNLICENSED",
"bugs": "https://github.com/martymarron/liff-server-api-ts/issues",
"homepage": "https://github.com/martymarron/liff-server-api-ts",
"repository": "https://github.com/martymarron/liff-server-api-ts",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"test": "jest",
"prepare": "tsc --build --clean; tsc --build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
},
"dependencies": {
"node-fetch": "2.6.7"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node-fetch": "2.6.2",
"eslint": "8.23.1",
"eslint-plugin-jest": "27.0.4",
"husky": "8.0.1",
"jest": "27.5.1",
"jest-fetch-mock": "3.0.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"ts-jest": "27.1.5",
"ts-node": "10.9.1",
"typescript": "4.8.3"
}
}