-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "esiil",
"version": "1.1.0",
"description": "Minimalist library for EVE Online's ESI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm pack --pack-destination packs",
"patch": "tsc && npm version patch && npm publish",
"test": "jest",
"trial": "node ./attempt.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karnthis/esiil.git"
},
"keywords": [
"eve",
"eve online",
"eveonline",
"ESI"
],
"author": "Erin Rivas <[email protected]>",
"homepage": "https://github.com/karnthis/esiil#readme",
"bugs": {
"url": "https://github.com/karnthis/esiil/issues"
},
"license": "MIT",
"dependencies": {
"jose": "^4.3.5",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"@types/node-fetch": "^2.5.8",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
},
"directories": {
"test": "test"
}
}