-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 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
42
43
44
45
46
{
"name": "cpa-authorization-server",
"description": "CPA Authorization Server",
"version": "0.0.1",
"private": true,
"contributors": [
"Chris Needham (https://github.com/chrisn)",
"Michael Barroco (https://github.com/barroco)",
"Andy Buckingham (https://github.com/andybee)",
"Matthew Glubb (https://github.com/mglubb)"
],
"scripts": {
"start": "bin/server",
"test": "NODE_ENV=test mocha --bail --timeout 10000 --reporter dot --require test/test-helper test/lib"
},
"dependencies": {
"express": "~3.4.8",
"jade": "~0.35.0",
"passport": "~0.1.17",
"passport-facebook": "~1.0.2",
"passport-github": "~0.1.5",
"passport-local": "~0.1.6",
"ejs": "~0.8.5",
"sequelize": "2.0.0-dev4",
"mysql": "~2.0.0-rc2",
"lodash": "~2.4.1",
"winston": "~0.7.2",
"async": "~0.2.10",
"jsonschema": "~0.4.0",
"node-uuid": "~1.4.1",
"connect-sqlite3": "~0.9.2",
"yargs": "~1.3.1",
"cors": "~2.4.1",
"express-namespace": "~0.1.1"
},
"devDependencies": {
"supertest": "~0.8.2",
"sinon-chai": "~2.4.0",
"chai": "~1.8.1",
"mocha": "~1.15.1",
"sinon": "~1.7.3",
"cheerio": "~0.13.1",
"sqlite3": "~3.1.3"
},
"license": "BSD 3"
}