forked from instructure/canvas-data-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.45 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
62
63
64
{
"name": "canvas-data-cli",
"version": "0.7.1",
"description": "A CLI tool for interacting with the Canvas Data API",
"main": "index.js",
"scripts": {
"test": "nyc mocha --require babel-core/register test/*Test.js",
"prepublishOnly": "babel src --out-dir lib/"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"include": [
"src/*.js",
"src/**/*.js"
],
"report-dir": "./report"
},
"bin": {
"canvasDataCli": "./bin/canvasDataCli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instructure/canvas-data-cli.git"
},
"engines": {
"node": ">=6.0"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/instructure/canvas-data-cli/issues"
},
"homepage": "https://github.com/instructure/canvas-data-cli#readme",
"dependencies": {
"async": "^1.5.0",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"map-stream": "0.0.6",
"mkdirp": "^0.5.1",
"multistream": "^2.1.0",
"proxyquire": "^1.7.10",
"pump": "^1.0.1",
"re": "^0.1.4",
"request": "^2.88.0",
"split": "^1.0.0",
"yargs": "^3.29.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^3.5.0",
"chai-fs": "^0.1.0",
"mocha": "^5.2.0",
"mocha-sinon": "^1.1.5",
"nyc": "^13.1.0",
"rimraf": "^2.4.3",
"sinon": "^1.17.3",
"touch": "^1.0.0"
}
}