forked from Brightspace/frau-publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "gulp-frau-publisher",
"version": "2.1.2",
"description": "Utility for publishing free-range apps and libraries to our CDN.",
"main": "src/publisher.js",
"scripts": {
"pretest": "npm run lint",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha test/*.js -- -R spec",
"test-secure": "mocha test/secure/*.js",
"lint": "jshint src test",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"bin": {
"frau": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/gulp-frau-publisher.git"
},
"keywords": [
"d2l",
"free-range"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^1.9.2",
"coveralls": "^2.11.2",
"gulp": "^3.8.10",
"istanbul": "^0.3.2",
"jshint": "^2.5.11",
"mocha": "^2.0.1",
"proxyquire": "^1.3.0",
"request": "^2.49.0",
"rmdir": "^1.0.4",
"sinon": "^1.11.1",
"sinon-chai": "^2.6.0"
},
"dependencies": {
"event-stream": "^3.1.7",
"gulp-s3": "^0.3.0",
"gulp-util": "^3.0.1",
"knox": "^0.9.1",
"q": "^1.1.2",
"semver": "^4.1.0",
"commander": "~2.6.0"
}
}