This repository has been archived by the owner on Feb 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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": "warframe-wikia-scraper",
"version": "0.0.0-development",
"description": "Scrapes lua files on the Warframe wiki for the latest warframe, weapon and mod data, and outputs JSON files to be used with the warframe-world-status API.",
"main": "index.js",
"scripts": {
"test": "node index.js && mocha",
"start": "node index.js",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"author": "Chris Dadabo",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.2",
"codacy-coverage": "^3.0.0",
"fs-extra": "^8.0.0",
"get-image-colors": "^2.0.0",
"image-downloader": "^3.3.0",
"lua.vm.js": "^0.0.1",
"mocha-lcov-reporter": "^1.3.0",
"node-cmd": "^3.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.1.2",
"cross-env": "^6.0.0",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "7.14.3",
"greenkeeper-lockfile": "^1.15.1",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"travis-deploy-once": "5.0.11",
"semantic-release": "15.13.21"
},
"repository": "https://github.com/wfcd/warframe-wikia-scrapers",
"nyc": {
"lines": 50,
"statements": 50,
"functions": 50,
"branches": 50,
"reporter": [
"lcov"
],
"check-coverage": true,
"report-dir": "./coverage",
"cache": false,
"all": true,
"include": [
"index.js",
"src/**/*.js"
]
},
"engines": {
"node": ">=8.9.0",
"yarn": "^1.5.1"
}
}