forked from ariatemplates/editor-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
68 lines (49 loc) · 1.1 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
{
"name": "editor-backend",
"version": "0.0.1",
"keywords": [
"editor",
"ide"
],
"decription": "A server providing common services for source code edition.",
"url": "https://github.com/ariatemplates/editor-backend",
"repository": {
"type": "git",
"url": "https://github.com/ariatemplates/editor-backend.git"
},
"bugs": "https://github.com/ariatemplates/editor-backend/issues",
"contributors": [
{
"name": "Yannick Meine",
"email": "yannick.meine@amadeus.com",
"url": "http://ymeine.github.io"
}
],
"licenses": [
{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"start": "node app/index.js"
},
"bin": {
"editor-svc": "app/index.js"
},
"preferGlobal": true,
"private": false,
"engineStrict": false,
"engines": {
"node": "*"
},
"dependencies": {
"lodash": "*",
"prelude-ls": "*",
"oop": "git+https://github.com/ymeine/oop",
"http-server": "git+https://github.com/ymeine/http-server",
"winston": "*",
"pegjs": "git+https://github.com/dmajda/pegjs",
"escape-html": "*"
}
}