This repository was archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "deskbookers",
"version": "5.15.2",
"description": "Deskbookers API JavaScript SDK",
"homepage": "https://www.deskbookers.com/",
"main": "dist/index.js",
"scripts": {
"test": "ava -c 2",
"test:watch": "ava -c 2 --watch --verbose",
"build": "rm -rf dist/*; babel src --out-dir dist",
"prepublish": "npm run build"
},
"keywords": [
"deskbookers",
"api",
"sdk",
"javascript"
],
"author": "Deskbookers <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/deskbookers/sdk-javascript"
},
"license": "MIT",
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"bcryptjs": "^2.4.0",
"deskbookers-phpurlencode": "1.1.2",
"dotenv": "^2.0.0",
"hash.js": "^1.0.3",
"json_encode": "^0.1.0",
"lodash": "^4.17.2",
"md5-hex": "^1.3.0",
"moment": "^2.17.1",
"platform": "^1.3.4",
"qs": "^6.3.0",
"ramda": "^0.23.0",
"rndm": "^1.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-stage-2": "^6.18.0",
"deskbookers-api": "ssh://[email protected]/deskbookers/deskbookers-api.git#v4.7.1",
"faker": "^4.1.0",
"fetch-everywhere": "^1.0.5"
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"babel": "inherit"
}
}