-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.98 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
{
"name": "course-file-scanner",
"version": "1.3.0",
"description": "Scans a Blackboard course file and returns it in a more usable format for Node.",
"main": "dist/index.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json --entry src",
"watch": "watch 'npm run build' src test",
"test": "babel-node test/index.js | tspec",
"prebuild": "npm run check -s && npm run clean -s",
"build": "babel --optional runtime src -d dist",
"postbuild": "npm run test -s",
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/collectively-made/course-file-scanner.git"
},
"keywords": [
"canvas",
"lms",
"blackboard"
],
"author": "Hayden Gascoigne <haydengascoigne@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/collectively-made/course-file-scanner/issues"
},
"homepage": "https://github.com/collectively-made/course-file-scanner#readme",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "*",
"babel-preset-es2015": "^6.3.13",
"coveralls": "*",
"dependency-check": "*",
"doctoc": "*",
"eslint": "*",
"isparta": "*",
"rimraf": "*",
"tap-spec": "*",
"tape": "*",
"watch": "*"
},
"dependencies": {
"adm-zip": "^0.4.7"
}
}