This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 1.97 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
71
{
"name": "openbadges-discovery",
"description": "Mozilla Openbadges Discovery",
"version": "0.1.0",
"main": "app/index.js",
"author": "Mozilla Open Badges http://openbadges.org",
"license": "MPL 2.0",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/mozilla/openbadges-discovery.git"
},
"scripts": {
"test": "./node_modules/.bin/mocha -R spec tests/**/*.test.js",
"postinstall": "./node_modules/.bin/bower install",
"validate": "./bin/beautify --warn"
},
"dependencies": {
"express": "~3.4.0",
"express-monkey-patch": "~0.1.0",
"nunjucks": "~1.0.0",
"optimist": "~0.6.0",
"client-sessions": "~0.4.0",
"config-store": "~0.2.0",
"db-migrate": "~0.6.3",
"moonboots": "~1.2.1",
"underscore": "~1.5.2",
"human-model": "~2.6.0",
"human-view": "~1.6.0",
"node-sass": "~0.8.6",
"express-persona": "~0.1.1",
"clientconfig": "0.0.4",
"backbone": "1.1.0",
"request": "~2.33.0",
"async": "~0.2.10",
"JSONStream": "~0.7.1",
"through": "~2.3.4",
"query-param-getter": "0.0.1",
"browserify-shim": "~3.3.2",
"displayer-api-client": "~0.1.2",
"nedb": "~0.10.5",
"bower": "~1.3.2",
"googleclientlogin": "~0.2.8",
"google-spreadsheets": "git://github.com/stenington/node-google-spreadsheets.git",
"mongodb": "~1.4.5",
"newrelic": "~1.7.0"
},
"devDependencies": {
"mocha": "~1.15.1",
"should": "~3.1.0",
"precommit-hook": "~0.3.9",
"supertest": "~0.9.0",
"browserify": "~3.32.1",
"nock": "~0.27.3",
"minimist": "0.0.8",
"file": "~0.2.2",
"js-beautify": "~1.4.2"
},
"browser": {
"backbone-undo": "./bower_components/Backbone.Undo/Backbone.Undo.js"
},
"browserify-shim": {
"backbone-undo": {
"exports": "Backbone.UndoManager",
"depends": [
"./bower_components/backbone/backbone.js:Backbone",
"./bower_components/underscore/underscore.js:_"
]
}
}
}