-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "delibee",
"description": "Delibee is delivery tracking library.",
"version": "1.1.9",
"author": {
"name": "Hyungjoo Kwon",
"email": "[email protected]",
"url": "http://blog.hyungdew.com/"
},
"contributors": [
"Hyungjoo Kwon <[email protected]>"
],
"license": "MIT",
"repository": "moodselah/delibee",
"keywords": [
"delibee",
"delivery",
"tracking",
"delivery tracking",
"택배",
"택배 추적",
"배송",
"택배 배송"
],
"dependencies": {
"axios": "0.18.0",
"cheerio": "1.0.0-rc.2",
"iconv-lite": "0.4.19",
"moment": "2.21.0",
"puppeteer": "next"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.11.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-markdown": "1.0.0-beta.6",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"mocha": "4.0.1"
},
"files": [
"lib/",
"LICENSE",
"HISTORY.md",
"index.js"
],
"engines": {
"node": ">= 7.6"
},
"bugs": {
"url": "http://github.com/moodselah/delibee/issues",
"email": "[email protected]"
},
"scripts": {
"lint": "./node_modules/.bin/eslint --plugin markdown --ext js,md .",
"test": "./node_modules/.bin/mocha --recursive ./**/*.spec.js",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha --recursive ./**/*.spec.js",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha --recursive ./**/*.spec.js --report lcovonly"
}
}