-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 967 Bytes
/
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
{
"name": "sevr-cli",
"version": "0.2.3",
"description": "Command line interface for the Sevr CMS Framework",
"keywords": [
"sevr",
"cli",
"command line",
"cms",
"content management",
"mongodb",
"mongoose"
],
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.test.js"
},
"bin": {
"sevr": "./bin/sevr"
},
"files": [
"index.js",
"lib",
"bin"
],
"repository": {
"type": "git",
"url": "git@github.com:ExclamationLabs/sevr-cli.git"
},
"author": "David Street",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"mocha": "^2.5.3",
"mock-fs": "^3.11.0",
"std-mocks": "^1.0.1"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"inflection": "^1.10.0",
"inquirer": "^1.1.2",
"lodash": "^4.13.1",
"require-all": "^2.0.0",
"vantage": "git+https://github.com/dthree/vantage.git"
}
}