forked from adobe/aem-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.7 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
57
58
59
60
61
{
"name": "@adobe/aem-upload",
"version": "2.0.3",
"description": "AEM Assets direct binary access uploading tool",
"main": "index.js",
"browser": "./dist/exports.js",
"license": "Apache-2.0",
"repository": "adobe/aem-upload",
"scripts": {
"test": "npm run lint && npm run testOnly",
"testOnly": "mocha --recursive ./test",
"build": "rimraf dist && babel ./src --out-dir dist",
"prepublishOnly": "npm test && npm run build",
"coverage": "nyc npm run test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"e2e": "mocha --recursive ./e2e",
"semantic-release": "semantic-release"
},
"author": "Adobe",
"contributors": [
"Jun Zhang",
"Mark Frisbey"
],
"bugs": "https://github.com/adobe/aem-upload",
"dependencies": {
"@adobe/cloud-service-client": "^1.1.0",
"@adobe/httptransfer": "^3.4.1",
"async": "^3.2.0",
"async-lock": "^1.2.8",
"filesize": "^4.2.1",
"node-fetch": "^2.6.9",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/preset-stage-2": "^7.8.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-eslint": "^3.0.9",
"dotenv": "^8.2.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"json-loader": "^0.5.7",
"mime": "^2.4.4",
"mocha": "^10.2.0",
"mock-fs": "^4.13.0",
"nock": "^13.3.0",
"nyc": "14.1.1",
"rimraf": "^3.0.2",
"should": "^13.2.3",
"sinon": "^9.2.3"
},
"optionalDependencies": {
"semantic-release": "^21.0.1"
}
}