-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.99 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
{
"name": "amna",
"version": "0.0.23",
"description": "AMNA: Amazing Mongoose Node.js API",
"main": "./src/index.js",
"scripts": {
"lint": "./node_modules/.bin/jshint ./src/index.js ./src/lib --reporter=node_modules/jshint-stylish/stylish.js",
"checkStyle": "./node_modules/.bin/jscs ./src/index.js ./src/lib",
"pretest": "npm run-script --loglevel silent lint && npm run-script --loglevel silent checkStyle",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --check-leaks --no-exit --recursive -R spec",
"posttest": "./node_modules/.bin/istanbul check-coverage ; if [ -a .posttest ] ; then source .posttest ; fi"
},
"repository": {
"type": "git",
"url": "git://github.com/NateFerrero/amna"
},
"keywords": [
"node",
"nodejs",
"mongo",
"mongoose",
"http",
"rest",
"api"
],
"author": "Nate Ferrero",
"license": "MIT",
"bugs": {
"url": "https://github.com/NateFerrero/amna/issues"
},
"homepage": "https://github.com/NateFerrero/amna",
"dependencies": {
"bcrypt": "0.8.x",
"body-parser": "1.3.x",
"bookshelf": "0.7.x",
"connect-mongo": "0.4.x",
"connect-multiparty": "1.1.x",
"ejs": "1.0.x",
"express": "4.1.x",
"express-partials": "0.3.x",
"express-session": "1.5.x",
"googleapis": "1.0.x",
"method-override": "2.3.x",
"moment": "2.8.x",
"mongoose": "3.8.x",
"mongoose-findorcreate": "0.1.x",
"mongoose-text-search": "0.0.x",
"mongoose-types": "1.0.x",
"multer": "0.1.x",
"parse-duration": "0.1.x",
"passport": "0.2.x",
"passport-facebook": "1.0.x",
"passport-facebook-token": "0.3.x",
"passport-google-oauth": "0.1.x",
"passport-local": "1.0.x",
"q": "1.0.x",
"superagent": "0.18.x"
},
"devDependencies": {
"chai": "1.10.x",
"codeclimate-test-reporter": "0.0.x",
"istanbul": "0.3.x",
"jscs": "1.10.x",
"jshint": "2.6.x",
"jshint-stylish": "1.0.x",
"mocha": "2.1.x",
"sinon": "1.12.x"
}
}