-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
45
46
47
{
"name": "extra-life-api",
"version": "8.0.0",
"description": "A node module to integrate with the extra-life API",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ammuench/extra-life-api.git"
},
"author": "Alex Muench",
"keywords": [
"extra",
"life",
"api",
"typescript",
"extralife",
"extra-life"
],
"bugs": {
"url": "https://github.com/ammuench/extra-life-api/issues"
},
"homepage": "https://github.com/ammuench/extra-life-api",
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"demo": "npm run build && node dist/demo.js",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty"
},
"dependencies": {
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/node-fetch": "^2.3.7",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"tslint": "^5.3.2",
"typescript": "^3.5.2"
},
"engines": {
"node": ">=4.0.0"
}
}