-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 911 Bytes
/
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
{
"name": "lms-scraper",
"version": "0.1.1",
"description": "LMS Scraper for IIITB",
"main": "test.js",
"author": "Aravind Reddy V <aravind.reddy@iiitb.org> (https://aravindvoggu.in)",
"repository": "https://github.com/zeroby0/lms-scraper",
"license": "MIT",
"scripts": {
"start": "node test.js",
"test": "ava",
"test:watch": "ava --watch",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "/node_modules/.bin/eslint . --fix"
},
"test": "standard --verbose | snazzy && node test.js",
"dependencies": {
"ava": "^0.25.0",
"bluebird": "^3.5.1",
"config": "^2.0.0",
"cookie": "^0.3.1",
"debug": "^3.1.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"js-yaml": "^3.12.0",
"jswget": "^0.4.1",
"osmosis": "^1.1.8"
},
"devDependencies": {
"install-peers": "^1.0.2"
}
}