-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 821 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 821 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
{
"name": "hackerone",
"version": "1.1.0",
"description": "A HackerOne API client for Node.js",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec -t 15000",
"test-co": "PATH=$(npm bin):$PATH && istanbul cover _mocha --reporter test -- -R spec -t 15000 && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xc0d3rz/hackerone.git"
},
"keywords": [
"hackerone",
"api",
"client"
],
"author": "Mohammed Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/xc0d3rz/hackerone/issues"
},
"homepage": "https://github.com/xc0d3rz/hackerone#readme",
"dependencies": {
"request": "^2.81.0"
},
"devDependencies": {
"chai": "^4.0.2",
"codecov": "^3.6.5",
"istanbul": "^0.4.5",
"mocha": "^3.4.2"
}
}