-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "backblaze-b2",
"version": "1.7.0",
"description": "Node.js Library for the Backblaze B2 Storage Service",
"main": "index.js",
"scripts": {
"test": "npm run lint-all && npm run test-unit",
"test-unit": "mocha \"test/**/*Test.js\"",
"lint-lib": "eslint \"lib/**/*.js\" --parser-options=ecmaVersion:6 --global Promise",
"lint-test": "eslint \"test/**/*.js\" --parser-options=ecmaVersion:6 --global describe,it,beforeEach,Promise",
"lint-all": "npm run lint-lib && npm run lint-test"
},
"keywords": [
"backblaze",
"b2",
"storage"
],
"homepage": "https://github.com/yakovkhalinsky/backblaze-b2",
"author": {
"name": "Yakov Khalinsky",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/yakovkhalinsky/backblaze-b2.git"
},
"bugs": {
"url": "https://github.com/yakovkhalinsky/backblaze-b2/issues"
},
"license": "MIT",
"devDependencies": {
"eslint": "^7.28.0",
"expect.js": "^0.3.1",
"mocha": "^8.4.0"
},
"dependencies": {
"axios": "^1.6.2",
"axios-retry": "^3.9.1",
"lodash": "^4.17.21"
},
"engines": {
"node": ">=10.0"
}
}