-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
55 lines (55 loc) · 1.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
{
"name": "show-me-the-way",
"version": "0.0.0",
"description": "see OSM edits happen in real time",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint js/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify js/site.js -p esmify > js/bundle.js"
},
"repository": "",
"author": "",
"license": "BSD",
"dependencies": {
"date-fns": "^2.28.0",
"lru-cache": "^4.0.2",
"mustache": "^4.2.0",
"osm-stream": "github:osmlab/osm-stream#v0.0.15"
},
"devDependencies": {
"browserify": "^17.0.0",
"eslint": "^8.18.0",
"esmify": "^2.1.1"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"L": "readonly"
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"camelcase": 2,
"arrow-parens": 2,
"no-var": 2,
"space-before-function-paren": ["error", {
"asyncArrow": "always",
"anonymous": "never",
"named": "never"
}],
"semi": "error",
"semi-spacing": "error"
}
},
"eslintIgnore": [
"bundle.js"
]
}