-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 831 Bytes
/
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
{
"name": "clean-context-menu",
"main": "./lib/main",
"version": "0.3.2",
"description": "Cleans up the context menus when you find they are getting too large.",
"keywords": [],
"repository": "https://github.com/m-hall/clean-context-menu",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {},
"eslintConfig": {
"rules": {
"no-empty": 0,
"no-console": 0,
"no-new": 0,
"no-extra-semi": 1,
"semi": [
2,
"always"
],
"func-names": 0,
"strict": [
0,
"global"
],
"no-param-reassign": [
2,
{
"props": false
}
],
"comma-dangle": 0
},
"globals": {
"atom": "true"
},
"env": {
"es6": true,
"node": true
}
}
}