forked from konnectors/libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
47
48
{
"name": "cozy-konnector-libs",
"version": "3.0.0",
"description": "All the libs needed by a cozy v3 konnector",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cozy/cozy-konnector-libs.git"
},
"keywords": [
"cozy-v3",
"konnector"
],
"author": "doubleface",
"license": "MIT",
"bin": {
"cozy-konnector-standalone": "bin/cozy-konnector-standalone",
"cozy-konnector-dev": "bin/cozy-konnector-dev"
},
"bugs": {
"url": "https://github.com/cozy/cozy-konnector-libs/issues"
},
"homepage": "https://github.com/cozy/cozy-konnector-libs#readme",
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.0",
"bluebird-retry": "^0.11.0",
"btoa": "^1.1.2",
"cheerio": "^1.0.0-rc.2",
"core-js": "^2.4.1",
"cozy-client-js": "^0.3.17",
"isomorphic-fetch": "^2.2.1",
"jest": "^20.0.4",
"moment": "^2.18.1",
"opn": "^5.1.0",
"regenerator-runtime": "^0.11.0",
"replay": "^2.1.2",
"request": "^2.81.0",
"request-debug": "^0.2.0",
"request-promise": "^4.2.1",
"uuid": "^3.1.0"
},
"scripts": {
"lint": "standard --fix commands/* helpers/* libs/* index.js",
"test": "jest"
}
}