-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.17 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
{
"name": "code-hangout",
"version": "1.0.0",
"description": "real time gist collaboration",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"standard": "^5.4.1"
},
"scripts": {
"test": "standard && meteor --test --once"
},
"standard": {
"globals": [
"Meteor", "Template", "Accounts",
"Router", "Session", "Mongo", "$",
"Gists", "Files", "Edits", "Showdown", "WebFontConfig"
],
"ignore": [
"packages/",
"phantom_runner.js",
"start_test.js",
"client/stylesheet/fonts.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/caalberts/code-hangout.git"
},
"keywords": [
"meteor",
"codemirror",
"sharejs",
"text",
"editor",
"collaboration"
],
"author": "Albert Salim (@caalberts), Calvin Tan (@calvintan)",
"license": "ISC",
"bugs": {
"url": "https://github.com/caalberts/code-hangout/issues"
},
"homepage": "https://github.com/caalberts/code-hangout#readme"
}