forked from adobe/node-httptransfer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 2.03 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
{
"name": "@adobe/httptransfer",
"version": "2.8.2",
"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.14.0",
"content-disposition": "^0.5.3",
"content-range": "^2.0.0",
"content-type": "^1.0.4",
"core-js": "^3.11.3",
"debug": "^4.3.1",
"drange": "^2.0.1",
"file-url": "2.0.2",
"filter-obj": "^2.0.2",
"node-fetch-npm": "^2.0.4",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@adobe/eslint-config-asset-compute": "^1.3.1",
"@azure/storage-blob": "^12.5.0",
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/plugin-transform-regenerator": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.0",
"@semantic-release/git": "^9.0.0",
"blob-polyfill": "^6.0.20211015",
"codecov": "^3.8.2",
"conventional-changelog-eslint": "^3.0.9",
"dotenv": "^10.0.0",
"license-checker": "^25.0.1",
"mkdirp": "^1.0.4",
"mocha": "^8.3.2",
"nock": "^12.0.3",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2"
},
"keywords": [
"cloud",
"transfer",
"http",
"https",
"file"
],
"scripts": {
"test": "DEBUG=httptransfer:* nyc mocha --recursive --exit",
"e2e": "DEBUG=httptransfer:* mocha --recursive --exit ./e2e",
"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"
}
}