-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "@geobadges/badgr-api-client",
"version": "0.12.0",
"description": "API Client for Accessing a Badgr Server",
"main": "index.js",
"scripts": {
"fix": "eslint index.js --fix",
"format": "prettier --arrow-parens avoid --tab-width 4 --write index.js",
"lint": "eslint index.js",
"test": "source .env && ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeoBadges/badgr-api-client.git"
},
"keywords": [
"badgr",
"geobadges",
"microcredentials",
"education",
"credentials",
"achievments",
"gamification"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/GeoBadges/badgr-api-client/issues"
},
"homepage": "https://github.com/GeoBadges/badgr-api-client#readme",
"devDependencies": {
"ava": "^3.8.2",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.1.2"
},
"dependencies": {
"axios": "^0.19.2",
"form-data": "^3.0.0"
}
}