-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.19 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "communecter",
"version": "0.0.34",
"description": "communecter",
"private": true,
"scripts": {
"start": "meteor run",
"desktop": "meteor-desktop",
"lint": "eslint .",
"pretest": "npm run lint --silent",
"fix": "eslint imports/ --fix"
},
"eslintConfig": {
"extends": "@meteorjs/eslint-config-meteor",
"rules": {
"meteor/eventmap-params": [
2,
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"no-underscore-dangle": [
2,
{
"allow": [
"_id",
"_id._str",
"_str",
"__",
"_ensureIndex",
"_collection",
"__helpers"
]
}
],
"radix": [
"error",
"as-needed"
],
"max-len": [
0,
350,
2,
{
"ignoreUrls": true
}
],
"no-param-reassign": [
2,
{
"props": false
}
],
"no-cond-assign": [
2,
"except-parens"
]
}
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"autolinker": "^3.0.0",
"bcrypt": "^3.0.4",
"markdown-it": "^8.4.2",
"meteor-node-stubs": "^0.4.1",
"sanitize-html": "^1.20.0",
"simpl-schema": "^1.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aboire/co.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aboire/co/issues"
},
"homepage": "https://github.com/aboire/co#readme",
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^7.2.3",
"electron": "2.0.17",
"electron-builder": "20.38.5",
"electron-builder-squirrel-windows": "20.38.5",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-meteor": "^4.1.0",
"eslint-plugin-react": "^7.1.0",
"meteor-desktop": "^2.0.0"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
}
}