-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "dota-wiki-api",
"version": "1.0.1",
"description": "A module to communicate with Liquipedia's Dota 2 Wiki to fetch Team Info, DPC Rankings, Dota Game Schedules, and more!",
"license": "MIT",
"repository": "https://github.com/ammuench/dota-wiki-api",
"author": "Alex Muench (https://alexmuen.ch)",
"keywords": [
"dota",
"dota2",
"dota 2",
"liquipedia",
"esports",
"defense",
"ancients",
"valve"
],
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build && mocha --compilers ts:ts-node/register --recursive 'test/**/*-spec.ts'",
"coverage": "nyc --include='src/**/*.ts' --reporter=text --reporter=html --reporter=lcov mocha --require ts-node/register --compilers ts:ts-node/register --recursive 'test/**/*-spec.ts'",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"start": "node dist/demo.js",
"demo": "npm run build && node dist/demo.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"date-fns": "^1.29.0",
"node-fetch": "^2.1.2",
"tslint": "^5.9.0"
},
"devDependencies": {
"@types/chai": "^3.0.0",
"@types/cheerio": "^0.22.7",
"@types/mocha": "^2.0.0",
"@types/node": "^7.0.0",
"@types/node-fetch": "^1.6.9",
"@types/sinon": "^4.3.0",
"chai": "^3.0.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^11.0.0",
"rimraf": "^2.0.0",
"sinon": "^4.4.2",
"ts-node": "^5.0.0",
"tslint": "^5.3.2",
"typescript": "^2.8.0"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/**/*"
],
"exclude": [
"dist",
"src/demo.ts"
],
"extension": [
".ts"
],
"reporter": [],
"all": true
}
}