-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.3 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
56
{
"name": "b2-cloud-storage",
"version": "1.0.5",
"description": "Backblaze B2 Cloud Storage API Client",
"keywords": [
"b2",
"b2-cloud",
"b2-cloud-storage",
"backblaze",
"upload"
],
"homepage": "https://github.com/nodecraft/b2-cloud-storage#readme",
"bugs": {
"url": "https://github.com/nodecraft/b2-cloud-storage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodecraft/b2-cloud-storage.git"
},
"license": "MIT",
"author": "Nodecraft Inc.",
"main": "index.js",
"files": [
"index.js",
"docs.md"
],
"scripts": {
"coverage": "nyc report --reporter=lcov",
"docs": "jsdoc2md index.js > docs.md",
"lint": "npm run lint:js && npm run lint:json",
"lint:js": "eslint \"**/*.js\"",
"lint:js:fix": "eslint \"**/*.js\" --fix",
"lint:json": "eslint \"**/*.json\"",
"mocha": "nyc mocha",
"test": "npm run lint && npm run mocha"
},
"dependencies": {
"async": "^3.2.6",
"lodash": "^4.17.21",
"request": "npm:postman-request@^2.88.1-postman.40"
},
"devDependencies": {
"@nodecraft/eslint-config": "^44.3.0",
"eslint": "^8.57.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-unicorn": "^56.0.1",
"jsdoc-to-markdown": "^9.1.1",
"mocha": "^11.0.1",
"nock": "^13.5.6",
"nyc": "17.1.0"
},
"engines": {
"node": ">=18",
"npm": ">=10"
}
}