-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "node-apod",
"version": "1.6.4",
"description": "Astronomy Picture of the Day(APOD) scraper for node, support multi-language",
"main": "index.js",
"engines": {
"node": ">=4.4.4"
},
"scripts": {
"test": "mocha --timeout 10000 test/index.js",
"jscs": "jscs .",
"lint": "eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SSARCandy/node-apod.git"
},
"keywords": [
"apod",
"node",
"scraper",
"Astronomy"
],
"author": "ssarcandy",
"license": "MIT",
"bugs": {
"url": "https://github.com/SSARCandy/node-apod/issues"
},
"homepage": "https://github.com/SSARCandy/node-apod#readme",
"dependencies": {
"cheerio": "^0.20.0",
"iconv-lite": "^0.4.13",
"request": "^2.72.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-dcard": "^1.3.0",
"eslint-plugin-mocha": "^2.0.0",
"jscs": "^3.0.5",
"jscs-preset-dcard": "^1.1.0",
"mocha": "^2.5.3"
}
}