forked from mapbox/s3urls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "@openaddresses/s3urls",
"type": "module",
"version": "3.3.1",
"description": "Create S3 urls from bucket/key or extract bucket/key from them",
"main": "dist/index.js",
"types": "index.ts",
"engines": {
"node": ">= 6.10.3"
},
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint *.ts test/*.ts",
"build": "tsc --build",
"test": "ts-node test/index.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/openaddresses/s3urls.git"
},
"author": "Nick Ingalls <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/openaddresses/s3urls/issues"
},
"homepage": "https://github.com/openaddresses/s3urls",
"devDependencies": {
"@types/node": "^18.13.0",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.17.0",
"tape": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}