-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.04 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "mc-discourse-sso",
"version": "1.1.0",
"description": "Allows users to login to Discourse SSO with their Minecraft accounts",
"main": "dist/index.js",
"engines": {
"node": "8.x.x"
},
"scripts": {
"build": "babel src --out-dir dist --source-maps",
"flow": "flow",
"flow-coverage": "flow-coverage-report -i 'src/**/*.js' -t html -t json -t text",
"lint": "eslint src",
"postinstall": "npm run build",
"start-dev": "nodemon node_modules/.bin/babel-node src",
"start": "node dist/index.js",
"watch": "babel src --out-dir dist --source-maps --watch"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/the-obsidian/mc-discourse-sso.git"
},
"keywords": [
"Minecraft",
"Discourse",
"SSO"
],
"author": "Jacob Gillespie <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-obsidian/mc-discourse-sso/issues"
},
"homepage": "https://github.com/the-obsidian/mc-discourse-sso#readme",
"dependencies": {
"babel-runtime": "^6.0.14",
"body-parser": "^1.14.1",
"cookie-parser": "^1.4.0",
"discourse-sso": "^1.0.3",
"ect": "^0.5.9",
"es6-error": "^4.0.2",
"express": "^4.13.3",
"express-session": "^1.12.1",
"isomorphic-fetch": "^2.2.1",
"node-sass-middleware": "^0.11.0",
"request": "^2.65.0",
"source-map-support": "^0.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.8.0",
"flow-bin": "^0.60.1",
"flow-coverage-report": "^0.4.0",
"nodemon": "^1.11.0"
}
}