-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
executable file
·73 lines (73 loc) · 2.17 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@adobe/httptransfer",
"version": "5.0.0",
"main": "index.js",
"browser": "./es2015/index.js",
"description": "Efficient File Transfer Module for NodeJS",
"author": {
"name": "Adobe Inc."
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/adobe/node-httptransfer.git"
},
"dependencies": {
"@babel/runtime": "^7.22.3",
"content-disposition": "^0.5.4",
"content-range": "^2.0.2",
"content-type": "^1.0.5",
"core-js": "^3.30.2",
"debug": "^4.3.4",
"drange": "^2.0.1",
"file-url": "2.0.2",
"filter-obj": "^2.0.2",
"form-data": "^4.0.0",
"mime-types": "^2.1.35",
"node-fetch-npm": "^2.0.4",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@adobe/eslint-config-asset-compute": "^1.3.3",
"@azure/storage-blob": "^12.14.0",
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/plugin-transform-regenerator": "^7.21.5",
"@babel/plugin-transform-runtime": "^7.22.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.4",
"@semantic-release/git": "^10.0.1",
"blob-polyfill": "^6.0.20211015",
"codecov": "^3.8.3",
"conventional-changelog-eslint": "^3.0.9",
"dotenv": "^16.1.3",
"license-checker": "^25.0.1",
"mkdirp": "^3.0.1",
"mocha": "^8.4.0",
"nock": "^13.3.1",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.7"
},
"keywords": [
"cloud",
"transfer",
"http",
"https",
"file",
"blob"
],
"scripts": {
"test": "DEBUG=httptransfer:* nyc mocha --recursive --exit",
"e2e": "DEBUG=httptransfer:* mocha --recursive --exit ./e2e",
"e2e-block": "DEBUG=httptransfer:* mocha --exit ./e2e/blocktransfer.test.js",
"posttest": "eslint ./ && license-checker --summary",
"beautify": "eslint ./ --fix",
"build-es2015": "./node_modules/.bin/rimraf es2015 && ./node_modules/.bin/babel ./lib --out-dir es2015",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release",
"testbed": "node testbed/index.js",
"prepublishOnly": "npm run build-es2015"
}
}