-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.35 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": "frau-publisher",
"version": "2.11.2",
"description": "A free-range-app utility for publishing to our CDN.",
"main": "src/publisher.js",
"bin": {
"frau-publisher": "bin/publishercli"
},
"files": [
"bin",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"pretest": "npm run lint",
"test": "mocha --require ./test/support/node.js",
"test-secure": "mocha test/secure/*.js --require ./test/support/node.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/frau-publisher.git"
},
"keywords": [
"d2l",
"frau",
"free-range"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Brightspace/frau-publisher/issues"
},
"homepage": "https://github.com/Brightspace/frau-publisher",
"devDependencies": {
"chai": "^4",
"eslint": "^9",
"eslint-config-brightspace": "^2",
"globals": "^15",
"gulp": "^4",
"mocha": "^10",
"proxyquire": "^2",
"request": "^2",
"sinon": "^18",
"sinon-chai": "^3",
"through2": "^4"
},
"dependencies": {
"aws-sdk": "^2",
"chalk": "^4",
"mime-types": "^2",
"promised-method": "^1",
"pump": "^3",
"semver": "^7",
"through2-concurrent": "^2",
"vinyl": "^2",
"vinyl-fs": "^3",
"yargs": "^16"
}
}