forked from instructure/canvas-data-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "canvas-data-cli",
"version": "0.2.0",
"description": "A CLI tool for interacting with the Canvas Data API",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel/register test/*Test.js",
"prepublish": "babel src --out-dir lib/"
},
"bin": {
"canvasDataCli": "./bin/canvasDataCli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/instructure/canvas-data-cli.git"
},
"engines": {
"node": ">=0.12.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",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"pump": "^1.0.1",
"re": "^0.1.4",
"request": "^2.65.0",
"rimraf": "^2.4.3",
"stream-stream": "^1.2.6",
"yargs": "^3.29.0"
},
"devDependencies": {
"babel": "^5.8.29",
"chai": "^3.5.0",
"chai-fs": "^0.1.0",
"mocha": "^2.3.3",
"mocha-sinon": "^1.1.5",
"sinon": "^1.17.3",
"touch": "^1.0.0"
}
}