package.json
1.15 KB
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
{
"name": "passport-kakao",
"version": "1.0.1",
"description": "kakao oauth2 login module",
"main": "./dist/passport-kakao",
"keywords": [
"passport",
"kakao",
"kakaotalk",
"oauth2"
],
"repository": {
"type": "git",
"url": "git://github.com/rotoshine/passport-kakao.git"
},
"author": "rotoshine@gmail.com",
"license": "MIT",
"dependencies": {
"pkginfo": "~0.3.0",
"passport-oauth2": "~1.1.2"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^6.2.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
},
"scripts": {
"test": "mocha -r node_modules/ts-node/register ./tests/**/*.spec.ts",
"clean": "rimraf dist/*",
"build": "npm run clean && npx tsc",
"lint": "eslint -c .eslintrc.js src/**/*.ts",
"format": "prettier --write \"src/*.{ts,tsx,json,md}\""
}
}