-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (65 loc) · 1.58 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "editor-backend",
"version": "0.1.3",
"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": "[email protected]",
"url": "http://ymeine.github.io"
}
],
"licenses": [
{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"build": "node scripts/build",
"start": "node src/index",
"stop": "node scripts/shutdown",
"watch": "node scripts/watch",
"test": "mocha test/tests/index.js",
"benchmark": "node scripts/benchmark"
},
"bin": {
"editor-backend": "bin/svc/index",
"editor-backend-build": "bin/build/index"
},
"preferGlobal": true,
"private": true,
"engineStrict": false,
"engines": {
"node": ">=0.8"
},
"devDependencies": {
"chokidar": "*",
"performance-now": "*",
"mocha": "*",
"benchmark": "*",
"colour": "*",
"tester": "git+https://github.com/ymeine/tester#version/latest"
},
"dependencies": {
"lodash": "2.x",
"prelude-ls": "1.x",
"fs.extra": "1.2.x",
"oop": "git+https://github.com/ymeine/oop#version/latest",
"http-server": "git+https://github.com/Kykstudio/http-server#version/latest",
"winston": "0.7.x",
"pegjs": "0.8.x",
"escape-html": "1.0.x",
"ariatemplates": "1.5.x"
}
}