-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "fms-xml-client",
"version": "3.1.2",
"description": "FileMaker Server XML Gateway JS Client",
"main": "src/",
"scripts": {
"test": "node test/run.js",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geistinteractive/fms-xml-client.git"
},
"keywords": [
"filemaker"
],
"author": "Todd Geist <[email protected]> (http://www.geisintertactive.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/geistinteractive/fms-xml-client/issues"
},
"homepage": "https://github.com/geistinteractive/fms-xml-client#readme",
"dependencies": {
"bluebird": "^3.4.0",
"debug": "^3.0.1",
"dotenv": "^4.0.0",
"fast-xml-parser": "^2.7.3",
"lodash.clonedeep": "^4.5.0",
"request": "^2.81.0",
"request-promise": "^4.2.1"
},
"devDependencies": {
"mocha": "^3.2.0"
}
}