-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "fl-auth-server",
"version": "0.16.2",
"description": "Auth server package for FounderLab apps",
"main": "lib/index.js",
"author": {
"name": "Gwilym Humphreys",
"url": "https://github.com/gwilymhumphreys"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/founderlab/fl-auth-server.git"
},
"scripts": {
"prepublish": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --out-dir ./lib",
"build": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --out-dir ./lib",
"watch": "rm -rf ./lib && babel ./src --ignore '/node_modules/' --watch --out-dir ./lib",
"test": "eval $(cat test/.env) mocha test/**/*.tests.js"
},
"dependencies": {
"backbone": "^1.2.0",
"backbone-mongo": "^0.6.10",
"bcrypt-nodejs": "0.0.3",
"lodash": "^4.0.0",
"moment": "^2.10.6",
"passport": "^0.2.2",
"passport-facebook": "^2.0.0",
"passport-linkedin-oauth2": "^1.4.0",
"passport-local": "^1.0.0",
"queue-async": "^1.0.7"
},
"devDependencies": {
"babel": "^5.8.29",
"babel-eslint": "^4.1.3",
"eslint": "^1.5.1",
"eslint-plugin-react": "^3.4.2",
"eslint-config-founderlab": "^0.1.0",
"expect": "^1.12.2"
}
}