forked from zoitec/cnn-content-retriever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
{
"name": "cnn-content-retriever",
"version": "1.6.1",
"description": "CNN Content Retriever - For retrieving content from Hypatia",
"main": "lib/content-retriever.js",
"directories": {
"docs": "./docs",
"example": "./example",
"lib": "./lib",
"test": "./test"
},
"scripts": {
"generate-authors": "tools/generate-authors.sh",
"generate-changelog": "changelog-maker --group",
"generate-coverage": "ENVIRONMENT=local PORT=5000 istanbul cover _mocha -- test/unit -r test/mocha-setup.js && open coverage/lcov-report/index.html",
"generate-docs": "rm -rf docs && esdoc -c .esdoc.json",
"test": "eslint . && test/validate-json-files.sh && ENVIRONMENT=local PORT=5000 mocha test/unit -r test/mocha-setup.js",
"update-apply": "ncu -u",
"update-check": "ncu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnnlabs/cnn-content-retriever.git"
},
"homepage": "https://github.com/cnnlabs/cnn-content-retriever#readme",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"async": "2.0.0-rc.5",
"debug": "2.2.0",
"request": "2.72.0",
"xml2js": "0.4.16"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"changelog-maker": "2.2.3",
"esdoc": "0.4.7",
"eslint": "2.10.2",
"istanbul": "0.4.3",
"jq-cli-wrapper": "0.3.0",
"jsonlint": "1.6.2",
"mocha": "2.5.2",
"nock": "8.0.0",
"npm-check-updates": "2.6.5"
},
"keywords": [
"cnn",
"cnnlabs",
"content",
"hypatia"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cnnlabs/cnn-content-retriever/issues"
}
}