-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.12 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.12 KB
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
{
"name": "sevr",
"version": "0.2.3",
"description": "A modern framework for building custom content management systems",
"keywords": [
"cms",
"mongo",
"express",
"content management",
"mongoose",
"web framework",
"framework"
],
"main": "index.js",
"directories": {
"test": "test"
},
"files": [
"index.js",
"default-config.js",
"lib",
"errors",
"console-logger",
"collection-factory",
"collection",
"authentication"
],
"repository": {
"type": "git",
"url": "git@github.com:ExclamationLabs/sevr.git"
},
"scripts": {
"test": "mocha test/**/*",
"docs": "scripts/docs"
},
"author": "David Street",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.3.0",
"chalk": "^1.1.3",
"express": "^4.13.4",
"jsonwebtoken": "^5.7.0",
"lodash": "^4.10.0",
"mongoose": "^4.5.10",
"require-all": "^2.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-spies": "^0.7.1",
"jsdoc-to-markdown": "^2.0.1",
"mocha": "^2.4.5"
},
"engines": {
"node": ">=6.0.0"
}
}