-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 789 Bytes
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
{
"name": "geo-editor",
"main": "./lib/geo-editor",
"version": "0.2.1",
"description": "Visually edit geodata sources on a map",
"keywords": [],
"activationCommands": {
"atom-workspace": "geo-editor:toggle"
},
"repository": "https://github.com/marcjansen/atom-geo-editor",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"scripts": {
"lint": "eslint lib/ spec/",
"lintfix": "eslint lib/ spec/ --fix"
},
"dependencies": {},
"devDependencies": {
"eslint": "3.5.0"
},
"eslintConfig": {
"rules": {
"semi": [
2,
"always"
]
},
"globals": {
"atom": "true"
},
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
}
}
}