forked from JasonEtco/action-badges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 946 Bytes
/
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
{
"private": true,
"name": "action-badges",
"description": "A badge service for repository check suites",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"dev": "nodemon ./index.js",
"test": "jest --coverage && standard",
"deploy": "now --public && now alias"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonEtco/action-badges.git"
},
"author": "Jason Etcovitch <jasonetco@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonEtco/action-badges/issues"
},
"homepage": "https://github.com/JasonEtco/action-badges#readme",
"dependencies": {
"@octokit/request": "^2.4.0",
"badgen": "^2.7.0"
},
"devDependencies": {
"express": "^4.16.4",
"jest": "^24.1.0",
"nock": "^10.0.6",
"nodemon": "^1.18.10",
"standard": "^12.0.1",
"supertest": "^3.4.2"
},
"standard": {
"env": [
"jest"
]
}
}