-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 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
51
52
{
"name": "osm-auth",
"version": "3.2.0",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/osmlab/osm-auth.git"
},
"description": "A usable example of JavaScript OAuth 2.0 with OpenStreetMap",
"keywords": [
"oauth",
"openstreetmap",
"ohauth"
],
"contributors": [
"Bryan Housel <bhousel@gmail.com> (https://github.com/bhousel)",
"Daniel Schep (https://github.com/dschep)",
"Hel Nershing Thapa (https://github.com/HelNershingThapa)",
"Tom MacWright <tom@macwright.org> (https://github.com/tmcw)"
],
"files": [
"dist/",
"src/"
],
"type": "module",
"exports": {
"bun": "./src/osm-auth.mjs",
"types": "./src/osm-auth.d.ts",
"import": "./dist/osm-auth.mjs",
"require": "./dist/osm-auth.cjs",
"browser": "./dist/osm-auth.iife.js"
},
"scripts": {
"all": "bun run --sequential clean lint build:js test",
"build:js": "bun ./scripts/build_js.ts",
"clean": "bun ./scripts/clean.ts",
"lint": "eslint ./src/osm-auth.mjs ./test/*.js",
"start": "bun ./scripts/server.ts",
"test": "bun test --dots --coverage ./test/*.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.11",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"node-localstorage": "^3.0.5",
"typescript": "^5.9.3"
},
"engines": {
"bun": ">=1.3.10"
}
}