-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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": "inha-info",
"version": "0.2.0",
"description": "Fetch Inha Univ. Information from Official Website",
"main": "lib/index.js",
"keywords": [
"inha-university",
"information",
"crawler"
],
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"dependencies": {
"jsdom": "^14.0.0",
"request": "^2.88.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-json-schema": "^1.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jsdoc": "^3.5.5",
"mocha": "^6.0.2"
},
"scripts": {
"docs": "jsdoc lib -d docs",
"lint": "eslint lib scripts test",
"lint:fix": "eslint lib scripts test --fix",
"prepare": "node scripts/prepare.js",
"test": "mocha --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Astro36/inha-info.git"
},
"author": "Seungjae Park <astro.psj@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Astro36/inha-info/issues"
},
"homepage": "https://github.com/Astro36/inha-info#readme"
}