-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.09 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": "droplr-api",
"version": "1.0.1",
"description": "Official Droplr API Client for Javascript",
"main": "index.js",
"scripts": {
"test": "jest test/unit --coverage",
"test:ci": "jest test/unit --coverage --maxWorkers=2",
"test:functional": "jest test/functional",
"lint": "eslint . --cache",
"lint:ci": "eslint .",
"lint:fix": "eslint . --cache --fix"
},
"author": "Droplr, Inc.",
"license": "MIT",
"contributors": [
"Antoni Orfin <[email protected]> (https://github.com/orfin)"
],
"bugs": {
"url": "https://github.com/Droplr/droplr-js/issues"
},
"homepage": "https://droplr.com",
"keywords": [
"droplr",
"api",
"client",
"droplr api",
"sdk",
"node",
"browser"
],
"dependencies": {
"@vespaiach/axios-fetch-adapter": "^0.3.1",
"axios": "^0.27.2",
"chai": "4.1.2",
"lodash": "4.17.21"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"jest": "^23.1.0",
"sinon": "^5.1.0",
"sinon-chai": "^3.1.0"
}
}