-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
52
53
54
55
56
{
"name": "google-oauth-server",
"version": "1.0.40",
"engines": {
"node": "6.9.1",
"npm": "3.10.8"
},
"description": "OAuth Server for authenticating users to access google apis",
"main": "dist/node.js",
"typings": "dist/node.d.ts",
"files": [
"dist/node/",
"dist/browser/",
"dist/node.js",
"dist/node.d.ts",
"dist/browser.js",
"dist/browser.d.ts",
"contracts/"
],
"scripts": {
"compile": "tsc",
"start": "node dist/index.js",
"launch": "npm run compile && npm start",
"typings": "typings install",
"heroku-postbuild": "npm run typings && npm run compile",
"push:git": "git push --tags origin master",
"version:patch": "npm version patch",
"postversion:patch": "npm run push:git",
"deploy": "npm run compile && npm run version:patch && npm run push:git"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Roaders/GoogleOAuthServer.git"
},
"keywords": [
"node",
"google",
"oauth"
],
"author": "Giles Roadnight",
"license": "MIT",
"bugs": {
"url": "https://github.com/Roaders/GoogleOAuthServer/issues"
},
"homepage": "https://github.com/Roaders/GoogleOAuthServer#readme",
"dependencies": {
"cors": "^2.8.1",
"express": "^4.14.0",
"mongodb": "^2.2.22",
"node-env-file": "^0.1.8",
"rx": "^4.1.0",
"rx-node": "^1.0.2",
"typescript": "2.1.5",
"typings": "^2.0.0"
}
}