-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 737 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 737 Bytes
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
{
"name": "node-destiny-2",
"version": "0.4.0",
"description": "API Wrapper for Destiny 2 in Node.js",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"keywords": [
"Destiny",
"2",
"Destiny2",
"API",
"Wrapper",
"Async",
"Node.js"
],
"author": {
"name": "Brandon Manke",
"email": "manke.brandon@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandonmanke/node-destiny-2.git"
},
"homepage": "https://github.com/brandonmanke/node-destiny-2",
"license": "MIT",
"devDependencies": {
"codecov": "^3.8.3",
"jest": "^29.7.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}