This repository was archived by the owner on Sep 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.16 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "elefrantio",
"version": "0.2.6",
"description": "Elefrant: A javascript platform to create api servers.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Elefrant/elefrantio"
},
"author": "Elefrant <hello@elefrant.com>",
"maintainers": [{
"name": "Marcos Sanz Latorre",
"email": "marcos.sanz@13genius.com",
"url": "http://mistersanz.com"
}],
"main": "server",
"keywords": [
"elefrant",
"elefrant.com",
"elefrantio",
"elefrant.io",
"API",
"Server"
],
"scripts": {
"test": "node node_modules/grunt-cli/bin/grunt"
},
"bin": {
"elefrant": "./bin/elefrant",
"elefrant-init": "./bin/elefrant-init",
"elefrant-authorize": "./bin/elefrant-authorize",
"elefrant-whoami": "./bin/elefrant-whoami",
"elefrant-login": "./bin/elefrant-login",
"elefrant-addKey": "./bin/elefrant-addKey",
"elefrant-publish": "./bin/elefrant-publish",
"elefrant-search": "./bin/elefrant-search",
"elefrant-register": "./bin/elefrant-register",
"elefrant-postinstall": "./bin/elefrant-postinstall",
"elefrant-install": "./bin/elefrant-install",
"elefrant-uninstall": "./bin/elefrant-uninstall",
"elefrant-docs": "./bin/elefrant-docs",
"elefrant-component": "./bin/elefrant-component",
"elefrant-action": "./bin/elefrant-action",
"elefrant-list": "./bin/elefrant-list",
"elefrant-status": "./bin/elefrant-status",
"elefrant-user": "./bin/elefrant-user"
},
"engines": {
"node": ">=0.10.0",
"npm": "1.4.x",
"elefrant": "0.2.x"
},
"dependencies": {
"commander": "~2.5.0",
"dependable": "~0.2.5",
"elefrant-util": "~0.2.2",
"elefrant-orm": "~0.2.3",
"request": "latest",
"npm": "~2.1.3",
"opener": "~1.4.0",
"q": "~2.0.2",
"shelljs": "~0.3.0",
"restify": "~2.8.3",
"prompt": "~0.2.14",
"moniker": "~0.1.2",
"qs": "~2.3.2",
"supports-color": "~1.2.0"
},
"devDependencies": {
"grunt-cli": "~0.1.13",
"grunt-contrib-jshint": "~0.10.0",
"grunt-mocha-test": "~0.10.0",
"grunt": "~0.4.0",
"mocha": "~1.18.2",
"should": "~3.2.0"
},
"readmeFilename": "readme.md",
"bugs": {
"url": "https://github.com/Elefrant/elefrantio/issues"
},
"homepage": "https://github.com/Elefrant/elefrantio"
}