-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "passport-kakao",
"version": "2.0.0",
"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": "[email protected]",
"license": "MIT",
"dependencies": {
"passport-oauth2": "^1.6.1"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.11",
"@types/passport-oauth2": "^1.4.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}\""
}
}