-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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": "@dtinth/google-sign-in-controller",
"version": "0.0.4-2",
"description": "Simple library to a client sign in with Google",
"main": "./lib-commonjs/index.js",
"module": "./lib/index.js",
"types": "./dist/google-sign-in-controller.d.ts",
"files": [
"src",
"lib",
"lib-commonjs",
"dist"
],
"scripts": {
"build": "heft build",
"test": "heft test",
"prepare": "heft build && ./scripts/generate-api-docs",
"api": "./scripts/generate-api-docs",
"release": "./scripts/release",
"format": "prettier --write ."
},
"author": "Thai Pangsakulyanont <[email protected]> (http://dt.in.th/)",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "2.20.0",
"@rushstack/heft": "0.44.2",
"@rushstack/heft-web-rig": "0.8.2",
"@types/heft-jest": "1.0.2",
"prettier": "2.5.1"
},
"dependencies": {
"@types/gapi": "^0.0.41",
"@types/gapi.auth2": "^0.0.55",
"p-memoize": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/dtinth/google-sign-in-controller.git"
},
"docModel": "./dist/google-sign-in-controller.api.json",
"homepage": "https://github.com/dtinth/google-sign-in-controller#readme",
"bugs": {
"url": "https://github.com/dtinth/google-sign-in-controller#issues"
}
}